更新された回答:
SmtpClient
この回答で使用されているクラスであるのドキュメントには、「Obsolete( "SmtpClient and its network of types are不完全に設計されています。https://github.com/jstedfast/MailKitおよびhttps:// githubを使用することを強くお勧めします。.com / jstedfast / MimeKit代わりに ") '。
出典:https : //www.infoq.com/news/2017/04/MailKit-MimeKit-Official
元の回答:
MailDefinitionクラスを使用するのは間違ったアプローチです。はい、それは便利ですが、プリミティブであり、Web UIコントロールに依存します。これは通常、サーバー側のタスクであるものには意味がありません。
以下に示すアプローチは、MSDNのドキュメントとCodeProject.comでのQureshiの投稿に基づいています。
注:この例では、埋め込みリソースからHTMLファイル、画像、添付ファイルを抽出しますが、ハードコードされた文字列、ローカルファイルなど、他の代替手段を使用してこれらの要素のストリームを取得することもできます。
Stream htmlStream = null;
Stream imageStream = null;
Stream fileStream = null;
try
{
// Create the message.
var from = new MailAddress(FROM_EMAIL, FROM_NAME);
var to = new MailAddress(TO_EMAIL, TO_NAME);
var msg = new MailMessage(from, to);
msg.Subject = SUBJECT;
msg.SubjectEncoding = Encoding.UTF8;
// Get the HTML from an embedded resource.
var assembly = Assembly.GetExecutingAssembly();
htmlStream = assembly.GetManifestResourceStream(HTML_RESOURCE_PATH);
// Perform replacements on the HTML file (if you're using it as a template).
var reader = new StreamReader(htmlStream);
var body = reader
.ReadToEnd()
.Replace("%TEMPLATE_TOKEN1%", TOKEN1_VALUE)
.Replace("%TEMPLATE_TOKEN2%", TOKEN2_VALUE); // and so on...
// Create an alternate view and add it to the email.
var altView = AlternateView.CreateAlternateViewFromString(body, null, MediaTypeNames.Text.Html);
msg.AlternateViews.Add(altView);
// Get the image from an embedded resource. The <img> tag in the HTML is:
// <img src="pid:IMAGE.PNG">
imageStream = assembly.GetManifestResourceStream(IMAGE_RESOURCE_PATH);
var linkedImage = new LinkedResource(imageStream, "image/png");
linkedImage.ContentId = "IMAGE.PNG";
altView.LinkedResources.Add(linkedImage);
// Get the attachment from an embedded resource.
fileStream = assembly.GetManifestResourceStream(FILE_RESOURCE_PATH);
var file = new Attachment(fileStream, MediaTypeNames.Application.Pdf);
file.Name = "FILE.PDF";
msg.Attachments.Add(file);
// Send the email
var client = new SmtpClient(...);
client.Credentials = new NetworkCredential(...);
client.Send(msg);
}
finally
{
if (fileStream != null) fileStream.Dispose();
if (imageStream != null) imageStream.Dispose();
if (htmlStream != null) htmlStream.Dispose();
}