SmtpClient()を使用すると、メールに添付ファイルを追加できますが、メールを添付する代わりに、メールを開いたときに画像を表示したい場合はどうすればよいでしょうか?
私が覚えているように、それは約4行のコードで実行できますが、その方法を覚えていないため、MSDNサイトで見つけることができません。
編集:私はウェブサイトなど、IPアドレスさえも使用していません。画像はハードドライブにあります。送信されると、メールの一部になります。だから、私はタグを使いたいと思うかもしれません...しかし、私のコンピューターは放送していないので、私はあまり確信がありません。
よく言及される解決策の1つは、画像をAttachment
としてメールに追加し、cid:
参照を使用してHTMLメールボディで参照することです。
ただし、代わりにLinkedResources
コレクションを使用する場合、インライン画像は引き続き正常に表示されますが、メールへの追加の添付ファイルとして表示されません。 それが私たちが実現したいことです、だから私はここでやっていることです:
using (var client = new SmtpClient())
{
MailMessage newMail = new MailMessage();
newMail.To.Add(new MailAddress("[email protected]"));
newMail.Subject = "Test Subject";
newMail.IsBodyHtml = true;
var inlineLogo = new LinkedResource(Server.MapPath("~/Path/To/YourImage.png"), "image/png");
inlineLogo.ContentId = Guid.NewGuid().ToString();
string body = string.Format(@"
<p>Lorum Ipsum Blah Blah</p>
<img src=""cid:{0}"" />
<p>Lorum Ipsum Blah Blah</p>
", inlineLogo.ContentId);
var view = AlternateView.CreateAlternateViewFromString(body, null, "text/html");
view.LinkedResources.Add(inlineLogo);
newMail.AlternateViews.Add(view);
client.Send(newMail);
}
注:このソリューションは、text/html
型のAlternateView
にMailMessage
を追加します。完全を期すために、タイプがtext/plain
のAlternateView
を追加する必要があります。これには、非HTMLメールクライアント用のプレーンテキストバージョンの電子メールが含まれます。
HTMLメールと画像は添付ファイルであるため、コンテンツIDで画像を参照する場合にすぎません。
Dim A As System.Net.Mail.Attachment = New System.Net.Mail.Attachment(txtImagePath.Text)
Dim RGen As Random = New Random()
A.ContentId = RGen.Next(100000, 9999999).ToString()
EM.Body = "<img src='cid:" + A.ContentId +"'>"
ここに包括的な例があるようです: インライン画像でメールを送信
4行のコードを言うとき、 this を参照していますか?
System.Net.Mail.Attachment inline = new System.Net.Mail.Attachment(@"imagepath\filename.png");
inline.ContentDisposition.Inline = true;
Base64文字列の画像の変換はどうですか?私の知る限り、これはメール本文に簡単に埋め込むことができます。
こちら をご覧ください。
すでに投稿されているソリューションは、私が見つけた最高のものです。たとえば、複数の画像がある場合は、それで完成させます。
string startupPath = AppDomain.CurrentDomain.RelativeSearchPath;
string path = Path.Combine(startupPath, "HtmlTemplates", "NotifyTemplate.html");
string body = File.ReadAllText(path);
//General tags replacement.
body = body.Replace("[NOMBRE_COMPLETO]", request.ToName);
body = body.Replace("[ASUNTO_MENSAJE]", request.Subject);
//Image List Used to replace into the template.
string[] imagesList = { "h1.gif", "left.gif", "right.gif", "tw.gif", "fb.gif" };
//Here we create link resources one for each image.
//Also the MIME type is obtained from the image name and not hardcoded.
List<LinkedResource> imgResourceList = new List<LinkedResource>();
foreach (var img in imagesList)
{
string imagePath = Path.Combine(startupPath, "Images", img);
var image = new LinkedResource(imagePath, "image/" + img.Split('.')[1]);
image.ContentId = Guid.NewGuid().ToString();
image.ContentType.Name = img;
imgResourceList.Add(image);
body = body.Replace("{" + Array.IndexOf(imagesList, img) + "}", image.ContentId);
}
//Altern view for managing images and html text is created.
var view = AlternateView.CreateAlternateViewFromString(body, null, "text/html");
//You need to add one by one each link resource to the created view
foreach (var imgResorce in imgResourceList)
{
view.LinkedResources.Add(imgResorce);
}
ThreadPool.QueueUserWorkItem(o =>
{
using (SmtpClient smtpClient = new SmtpClient(servidor, Puerto))
{
smtpClient.EnableSsl = true;
smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
smtpClient.Timeout = 50000;
smtpClient.UseDefaultCredentials = false;
smtpClient.Credentials = new System.Net.NetworkCredential()
{
UserName = UMail,
Password = password
};
using (MailMessage mailMessage = new MailMessage())
{
mailMessage.IsBodyHtml = true;
mailMessage.From = new MailAddress(UMail);
mailMessage.To.Add(request.ToEmail);
mailMessage.Subject = "[NAPNYL] " + request.Subject;
mailMessage.AlternateViews.Add(view);
smtpClient.Send(mailMessage);
}
}
});
ご覧のとおり、画像名の配列があるため、画像は同じ出力フォルダーを指しているため、画像が同じフォルダーにあることが重要です。
最後に、電子メールは非同期で送信されるため、ユーザーは送信を待つ必要がありません。