I want to send an email message containing a URL.
My first try:
SendMail[email,
{subject, "This is my <a href=\"http://www.wolfram.com\">url</a>."}]
My second try:
SendMail[email,
{subject,
Row[{"This is my ", Hyperlink["url", "http://www.wolfram.com"], "."}]}]
Both failed. When I am sending such messages, the message body will be attached files. Is there a work-around that can implement it? I want the message to include the hyperlink.
SendMail. In particular, the comment aboutSendMailalways adding a text/plain section at the beginning of the mail which, I wonder, might be a problem if you try to include an HTML body. – MarcoB Jun 12 '17 at 16:19text/plain.Could you help to post it as an complete answer? – yode Jun 12 '17 at 17:31