Je pourrais pouvoir laisser l'application Web envoyer des courriels automatiques à l'aide du Planificateur de tâches de Windows. Maintenant, je veux envoyer un email au format HTML en utilisant la méthode suivante que j'ai écrite pour envoyer des emails.
Mon code-behind:
protected void Page_Load(object sender, EventArgs e)
{
SmtpClient sc = new SmtpClient("mail address");
MailMessage msg = null;
try
{
msg = new MailMessage("[email protected]",
"[email protected]", "Message from PSSP System",
"This email sent by the PSSP system");
sc.Send(msg);
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (msg != null)
{
msg.Dispose();
}
}
}
Comment faire ça? Je veux juste mettre un texte en gras avec un lien et peut-être une image dans le courrier électronique.
Définir isBodyHtml
sur true
vous permet d’utiliser des balises HTML dans le corps du message:
msg = new MailMessage("[email protected]",
"[email protected]", "Message from PSSP System",
"This email sent by the PSSP system<br />" +
"<b>this is bold text!</b>");
msg.IsBodyHtml = true;
Le meilleur moyen d'envoyer des emails au format HTML
Ce code sera dans "Customer.htm"
<table>
<tr>
<td>
Dealer's Company Name
</td>
<td>
:
</td>
<td>
#DealerCompanyName#
</td>
</tr>
</table>
Lire le fichier HTML à l'aide de System.IO.File.ReadAllText. obtenir tout le code HTML en variable chaîne.
string Body = System.IO.File.ReadAllText(HttpContext.Current.Server.MapPath("EmailTemplates/Customer.htm"));
Remplacez chaîne particulière à votre valeur personnalisée.
Body = Body.Replace("#DealerCompanyName#", _lstGetDealerRoleAndContactInfoByCompanyIDResult[0].CompanyName);
appelez SendEmail (string Body) Function et suivez la procédure pour envoyer un courrier électronique.
public static void SendEmail(string Body)
{
MailMessage message = new MailMessage();
message.From = new MailAddress(Session["Email"].Tostring());
message.To.Add(ConfigurationSettings.AppSettings["RequesEmail"].ToString());
message.Subject = "Request from " + SessionFactory.CurrentCompany.CompanyName + " to add a new supplier";
message.IsBodyHtml = true;
message.Body = Body;
SmtpClient smtpClient = new SmtpClient();
smtpClient.UseDefaultCredentials = true;
smtpClient.Host = ConfigurationSettings.AppSettings["SMTP"].ToString();
smtpClient.Port = Convert.ToInt32(ConfigurationSettings.AppSettings["PORT"].ToString());
smtpClient.EnableSsl = true;
smtpClient.Credentials = new System.Net.NetworkCredential(ConfigurationSettings.AppSettings["USERNAME"].ToString(), ConfigurationSettings.AppSettings["PASSWORD"].ToString());
smtpClient.Send(message);
}
Ça marche pour moi
msg.BodyFormat = MailFormat.Html;
et alors vous pouvez utiliser le HTML dans votre corps
msg.Body = "<em>It's great to use HTML in mail!!</em>"