Email Type¶
AttachmentOptions¶
Attributes:
archive: strArchive itselffilename: strName for the archive
TemplateOptions¶
Attributes:
name: strTemplate nameYou can create an e-mail template on TagoRUN options at https://admin.tago.io/runparams: Optional[dict[str, Union[int, float]]][Optional] Parameters to parse on TemplateYou can use that parameter as local variable using $PARAMETER_KEY$ example params = { name: ‘John’ } will be $name$ on template document
EmailBase¶
Attributes:
from_name: Optional[str][Optional] Name of originexample: “My Run”subject: strSubject of the e-mail only allow with message or htmlattachment: Optional[AttachmentOptions][Optional] Attachment for the e-mail
EmailRawText¶
Attributes:
message: strMessage in raw text for email body
EmailHTML¶
Attributes:
html: strHTML email body
EmailWithTemplate¶
Attributes:
from_name: Optional[str][Optional] Name of originexample: “My Run”attachment: Optional[AttachmentOptions][Optional] Attachment for the e-mailtemplate: Optional[TemplateOptions][Optional] Use TagoRUN E-Mail TemplateIf you use template together with attachment the back-end will generate a parameter called ‘URL’
EmailWithHTML¶
EmailWithRawText¶
EmailWithRawText = EmailBase or EmailRawText