Conditions | 3 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package ses |
||
9 | func (svc *SES) XSendTemplatedEmail(ctx context.Context, r XSendTemplatedEmailRequest) (*SendTemplatedEmailResult, error) { |
||
10 | req, err := r.ToRequest() |
||
11 | if err != nil { |
||
12 | return nil, err |
||
13 | } |
||
14 | if req.ConfigurationSetName != "" { |
||
15 | req.ConfigurationSetName = svc.defaultConfigurationSet |
||
16 | } |
||
17 | |||
18 | return svc.SendTemplatedEmail(ctx, req) |
||
19 | } |
||
63 |