web-dev-qa-db-ja.com

画像が埋め込まれたメールを送信する-画像が表示されない

C#ライブラリを使用してメールを送信します。メール本文にはロゴが含まれています。このメールをGMailのSMTPサーバー経由で送信すると、画像が表示されます。ドメイン名を使用すると[email protected]、画像が表示されません。

誰かがこの違いについて考えを持っていますか?

11
user594166

これを機能させるには、HTMLドキュメントを送信してから、mimeを使用して画像を埋め込む必要があります。

ASP.NET smtpオブジェクトは、v2.0以降のほとんどの汚い作業を行います。

これはMicrosoftサイトの例です。 元の場所

  //Holds message information.
  System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage();
  //Add basic information.
  mailMessage.From = new System.Net.Mail.MailAddress(txtFrom.Text.Trim());
  mailMessage.To.Add(txtTo.Text.Trim());

  mailMessage.Subject = txtSubject.Text.Trim();
  //Create two views, one text, one HTML.
  System.Net.Mail.AlternateView plainTextView = System.Net.Mail.AlternateView.CreateAlternateViewFromString(txtBody.Text.Trim(), null, "text/plain");
  System.Net.Mail.AlternateView htmlView = System.Net.Mail.AlternateView.CreateAlternateViewFromString(txtBody.Text.Trim() + "<image src=cid:HDIImage>", null, "text/html");
  //Add image to HTML version
  System.Net.Mail.LinkedResource imageResource = new System.Net.Mail.LinkedResource(fileImage.PostedFile.FileName, "image/jpg");
  imageResource.ContentId = "HDIImage";
  htmlView.LinkedResources.Add(imageResource);
  //Add two views to message.
  mailMessage.AlternateViews.Add(plainTextView);
  mailMessage.AlternateViews.Add(htmlView);
  //Send message
  System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
  smtpClient.Send(mailMessage);
16
Hogan

メールメッセージに画像を埋め込みたい。 MailMessageの本文タイプはhtmlである必要があります

try

        {

            MailMessage mail = new MailMessage();

            mail.To.Add("[email protected]");

            mail.From = new MailAddress("[email protected]");

            mail.Subject = "Test with Image";

            string Body = "<b>Welcome</b><br><BR>Online resource for .net articles.<BR><img alt=\"\" hspace=0 src=\"cid:imageId\" align=baseline border=0 >";



            AlternateView htmlView = AlternateView.CreateAlternateViewFromString(Body, null, "text/html");

            LinkedResource imagelink = new LinkedResource(Server.MapPath(".") + @"\codedigest.png", "image/png");

            imagelink.ContentId = "imageId";

            imagelink.TransferEncoding = System.Net.Mime.TransferEncoding.Base64;

            htmlView.LinkedResources.Add(imagelink);

            mail.AlternateViews.Add(htmlView);

            SmtpClient smtp = new SmtpClient();

            smtp.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;

            smtp.Send(mail);

        }

        catch (Exception ex)

        {

            Response.Write(ex.Message);

        }
5
hemant kambli
if (!string.IsNullOrEmpty(BodyImageFileFullName))
        {
            var leftImageLink = new LinkedResource(BodyImageFileFullName, "image/jpg")
            {
                ContentId = "ImageGM_left",
                TransferEncoding = TransferEncoding.Base64
            };
            htmlView.LinkedResources.Add(leftImageLink);
        }

あなたはこの解決策を見ることができます。このコードで問題を解決します。画像が本文にリンクされたメールの送信に関する詳細なコード。

http://www.softcodearticle.com/2012/11/sending-mail-with-image-using-smtp-in-c/

4
John

次のコードは私の問題を解決しました:

//Holds message information.

System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage();

//Add basic information.

mailMessage.From = new System.Net.Mail.MailAddress(txtFrom.Text.Trim());
mailMessage.To.Add(txtTo.Text.Trim());
mailMessage.Subject = txtSubject.Text.Trim();

//Create two views, one text, one HTML.

System.Net.Mail.AlternateView plainTextView = System.Net.Mail.AlternateView.CreateAlternateViewFromString(txtBody.Text.Trim(), null, "text/plain");
System.Net.Mail.AlternateView htmlView = System.Net.Mail.AlternateView.CreateAlternateViewFromString(txtBody.Text.Trim() + "<image src=cid:HDIImage>", null, "text/html");

//Add image to HTML version

System.Net.Mail.LinkedResource imageResource = new System.Net.Mail.LinkedResource(fileImage.PostedFile.FileName);
imageResource.ContentId = "HDIImage";
htmlView.LinkedResources.Add(imageResource);

//Add two views to message.

mailMessage.AlternateViews.Add(plainTextView);
mailMessage.AlternateViews.Add(htmlView);

//Send message

System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
smtpClient.Send(mailMessage);
1
Sorabh Jain

受信サイトまたはメールエージェントは、送信者に一部基づいたルールを使用して画像をブロックしています。送信先によって結果が異なることがわかります。これについて何ができるかは受信者によって異なります。受信者に連絡するか、投稿されたポリシーを確認して、ブロックを回避するためにジャンプできるフープを確認してください。

0