Conditions | 1 |
Total Lines | 9 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package pinpointemail |
||
17 | func (svc *PinpointEmail) xSendEmail(ctx context.Context, useHTML bool, subject, body, from string, to ...string) error { |
||
18 | _, err := svc.SendEmail(ctx, SendEmailRequest{ |
||
19 | Subject: subject, |
||
20 | Body: body, |
||
21 | From: from, |
||
22 | To: to, |
||
23 | UseHTML: useHTML, |
||
24 | }) |
||
25 | return err |
||
26 | } |
||
27 |