0

首先,我尝试了 FluentEmail,但那个似乎被我的 .NetCore 版本破坏了。

我正在创建这样的电子邮件:

var email = new MimeMessage();

// Put all the data in the email

X509Certificate2 cert = new X509Certificate2("fileName");

问题是,我找不到任何实际执行签名的示例。我能找到的最好的方法是签名和加密,但电子邮件不得加密。那一个真的很重要。

现在有没有人如何签署电子邮件(包括发件人、主题、正文等)。任何帮助将不胜感激。

我可能应该补充一点,证书将位于某个文件路径,并且程序将部署在 Linux Docker 容器上。所以代码不能只在 Windows 上工作。

对不起,我应该把显而易见的东西锁住。这是我第一次尝试通过代码发送电子邮件。

更新 0: 请注意非常确定这是否有效,因为WindowsSecureMimeContext(..). (我知道我只在下面的代码中签署了正文)。

X509Certificate2 cert = new X509Certificate2("fileName");
using (var context = new WindowsSecureMimeContext(StoreLocation.LocalMachine))
{
   email.Body = MultipartSigned.Create(context, new CmsSigner(cert), email.Body);
}

更新1: 我认为这应该工作:

X509Certificate2 cert = new X509Certificate2("fileName");
using (var context = new DefaultSecureMimeContext())
{
   email.Body = MultipartSigned.Create(context, new CmsSigner(cert), email.Body);
}
4

1 回答 1

0

我认为这应该是我的问题的答案(示例仅在正文上签名):

X509Certificate2 cert = new X509Certificate2("fileName");
using (var context = new DefaultSecureMimeContext())
{
  email.Body = MultipartSigned.Create(context, new CmsSigner(cert), email.Body);
}

在我能够对此进行测试之前,我还需要做一些工作。

于 2021-07-22T07:46:01.853 回答