I\'m sending emails using Mule. I need to add format to the text I send. The content of the mail is the payload which has a String in it that I form in a Java method and sen
I solved it. I was missing setting content-type in the smtp:connector and the mime-type in the smtp:outbpund-endbound as text/html for the to work. This is the correct code:
With this configuration you can use html in your text like this
Email company
Name : name
Company : arch
Email : qqq@aaaa.com
fin
and it will be shown when receiving the email.
Hope it'll help someone else.