MATLAB: How to create html formatted text as a message part of send mail function

gmail interfaceMATLAB

I know that send mail function allows us to send mails (i am using gmail) from matlab .My objective is to feed html formatted text in the message part.i am using the below syntax
sendmail(recipient, subject, message);

Best Answer

Unfortunately, SENDMAIL does not support HTML format. It is written in the documentation. (You can send HTML files as an attachement.)
Related Question