which programming language you are using to send email.
In any language a option should be there like "IsBodyHtml". To do the "True" this check. Like code of .NET
System.Net.Mail.MailMessage mm = new System.Net.Mail.MailMessage();
mm.IsBodyHtml = true;
So the mail will go as html text.