Splunk sends email message as plain-text. The content_type=html is for formatting of other contents set by Splunk like link to alerts, inline table with tabular formatting etc. This will in fact prevent malicious content to be embedded via message content as html.
Having said that please try to send message with email address and web URL which should get auto formatted. Also \n should get formatted as new line. This might work in Outlook with Auto Formatting turned on, however, behavior for Desktop App and Web App may vary and would need testing. Try changing content_type between html and plain for triggering alerts and check in both Desktop and Web App.
| sendemail content_type=html
[email protected] subject="TEST" message="This is a test. \n Email To:
[email protected] Link: http:\\localhost:8000 "
Also ideally footer should be modified to add signature. However, directly no formatting can be done on footer and you will have to rely on modifying sendemail.py for complete control of the email.
... View more