| Conditions | 1 | 
| Total Lines | 10 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | package ses | ||
| 28 | func (svc *SES) XUpdateTemplate(ctx context.Context, templateName, subject, htmlBody, textBody string) error { | ||
| 29 | 	_, err := svc.UpdateTemplate(ctx, UpdateTemplateRequest{ | ||
| 30 | 		Template: Template{ | ||
| 31 | TemplateName: templateName, | ||
| 32 | SubjectPart: subject, | ||
| 33 | HTMLPart: htmlBody, | ||
| 34 | TextPart: textBody, | ||
| 35 | }, | ||
| 36 | }) | ||
| 37 | return err | ||
| 38 | } | ||
| 39 |