It is quite common for many applications to send automated email notifications. Couple of months ago, I have worked on improving our old email template format to make it more user friendly.
In this tutorial I will walk you though regarding how I took advantage of Microsoft Outlook to quickly generate custom email template and later using the html template for building an automated custom email application using C#.
Steps:
- Creating Templates: Using the rich text editor support in Outlook create a nicely formatted email. Use placeholder text for the values you like to change dynamically based on your task completion status.
To keep this tutorial simple, I have created a simple table with placeholder text inside the third bracket [place holder text]. However, you can use anything supported by outlook editor.
Figure: Email Template |
- Getting HTML code: Send the created email to your own address. After that, open the sent email and right click to view source. It will display the HTML source of the email body with all the formatting you have made. Copy the HTML source to a separate file and save it as EmailTemplate.html
HTML Source of the email |
Create a C# Console application and add the EmailTemplate.html file to your project
- Now in the C# console application you can read all text from the HTML file and replace the placeholder content with the value of your corresponding variable.
- For example, in the following code sample I am replacing the placeholder text in the HTML with my own value.
private string GenerateEmailBody(JobLoadParam jlp)
{
string emailBody = string.Empty;
try
{
string strHTML = File.ReadAllText("EmailTemplate.html");
strHTML = strHTML
.Replace("[SourceFileName]", jlp.SourceFileName)
.Replace("[SourceFileNetworkPath]", jlp.SourceFileNetworkPath)
.Replace("[ExceptionFileName]", jlp.ExceptionFileName)
.Replace("[ExceptionNetworkPath]", jlp.ExceptionFileNetworkPath)
.Replace("[TrackingReferenceCode]", jlp.TrackingReferenceCode);
emailBody = strHTML;
}
catch (Exception ex)
{
System.Diagnostics.EventLog.WriteEntry(ex.Source, ex.Message, System.Diagnostics.EventLogEntryType.Error);
}
return emailBody;
}
- After that, you can set the updated html text from above as Body of the MailMessage and can send the email using SMTP client. Make sure you have the IsBodyHtml property of the MailMessage object set to true.
MailAddress to = new MailAddress("email@domain");
MailAddress from = new MailAddress("email@domain");
MailMessage mail = new MailMessage(from, to);
mail.Subject = "Test email";
mail.IsBodyHtml = true;
mail.Body = GenerateEmailBody(jlp);
SmtpClient smtp = new SmtpClient();
smtp.Host = "your host address";
smtp.Port = "port";
smtp.Send(mail);
mail.Dispose();
Comments
Hello friends, its wonderful paragraph on the topic of teachingand completely explained, keep it up all the time. facebook login