デジタル署名された電子メールを送信するための以下のコードがあります。アセンブリ リソースから取得する必要がある gif ロゴを含む html ベースの署名を挿入する必要があります。Google で検索して解決策を見つけましConvert.ToBase64String()
たが、Outlook に画像が表示されません。2番目のアプローチは私の画像LinkedResource
をAlternateView
埋め込むことですが、実際には以下のコードでは機能しませんでした. 私はすでにAlternateView
デジタル署名付きの電子メールを送信する必要があります。どうにかして画像も追加することはできますか?
だからmailer(to, from, from_name, relay, subject, body, cc1, cc2);
。
private void mailer(string toaddress, string fromaddress, string fromaddress_disp, string relays, string mailsubject, string bodytext, string ccman, string cccct)
{
string certname = "";
MailAddress from = new MailAddress(fromaddress, fromaddress_disp);
MailAddress to = new MailAddress(toaddress);
MailAddress cc_man = new MailAddress(ccman);
MailAddress cc_cct = new MailAddress(cccct);
MailMessage message = new MailMessage(from, to);
message.CC.Add(cc_man);
message.CC.Add(cc_cct);
message.Subject = mailsubject;
message.IsBodyHtml = true;
string body = "Content-Type: text/html; charset=iso-8859-1 \r\nContent-Transfer-Encoding: 8bit\r\n\r\n" + bodytext;
byte[] messageData = Encoding.ASCII.GetBytes(body);
ContentInfo content = new ContentInfo(messageData);
SignedCms Cms = new SignedCms(new ContentInfo(messageData));
X509Store store = new X509Store(StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
RSACryptoServiceProvider csp = null;
X509Certificate2Collection certCollection = store.Certificates;
X509Certificate2 cert = null;
foreach (X509Certificate2 c in certCollection)
{
if ((c.Subject.Contains("myEmailAddress")) && (c.FriendlyName.Contains("CompanyEmailDigSig")))
{
cert = c;
break;
}
}
if (cert != null)
{
csp = (RSACryptoServiceProvider)cert.PrivateKey;
}
else
{
throw new Exception("Valid certificate was not found");
}
CmsSigner Signer = new CmsSigner(SubjectIdentifierType.IssuerAndSerialNumber, cert);
Cms.ComputeSignature(Signer);
byte[] SignedBytes = Cms.Encode();
MemoryStream signedStream = new MemoryStream(SignedBytes);
AlternateView signedView = new AlternateView(signedStream, "application/pkcs7-mime; smime-type=signed-data; name=sig.p7m");
message.AlternateViews.Add(signedView);
SmtpClient client = new SmtpClient(relays);
store.Close();
try
{
client.Send(message);
}
catch (Exception ex)
{
//exception
}
}
編集:以前に受け入れられた回答が十分ではないため、このスレッドを再度開く必要がありました。