:return: Gets the name of the template, if a template has been loaded.
(self)
| 64 | return True |
| 65 | |
| 66 | def name(self): |
| 67 | """ |
| 68 | :return: Gets the name of the template, if a template has been loaded. |
| 69 | """ |
| 70 | return self.template["TemplateName"] if self.template is not None else None |
| 71 | |
| 72 | # snippet-start:[python.example_code.ses.CreateTemplate] |
| 73 | def create_template(self, name, subject, text, html): |
no outgoing calls