Is it possible to send custom reports as HTML?
rmnvncnt
Registered Posts: 41 ✭✭✭✭✭
I'm currently using the message sender object from within custom Python scenario, but so far I can only send plain text messages. Is it possible to use HTML formating rather than plain text with this feature? I can't find the complete list of parameters for these functions in the documentation :
message_sender.set_params(sender="dss@company.com", recipent="data-scientists@company.com")
message_sender.send(sender="", recipient="", subject="", message="")
Thanks a lot!
Romain
Best Answer
-
Hi Romain,
You can use HTML formatting this way:
sender = scenario.get_message_sender(channel_id="my_channel_id")
sender.set_params(sender="dss@company.com",
recipient="your.email@company.com",
sendAsHTML=True)
html_message="<b>All is good</b>"
sender.send(subject="The scenario is doing well",
message=html_message)
Answers
-
*happy dance*