gmail 通过 smtp 进行对话

发布于 2024-12-06 22:26:35 字数 633 浏览 0 评论 0原文

我如何通过 smtp 发送电子邮件作为 gmail 对话的一部分? 采取相同的主题是行不通的...

请告诉我您是否需要更多信息... 提前致谢!

        MailMessage mail = new MailMessage();
        SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");

        mail.From = new MailAddress("@googlemail.com");
        mail.To.Add("@.com");
        mail.Subject = "(Somee.com notification) New order confirmation";
        mail.Body = "(Somee.com notification) New order confirmation";

        SmtpServer.Port = 587;
        SmtpServer.Credentials = new System.Net.NetworkCredential("", "");
        SmtpServer.EnableSsl = true;

        SmtpServer.Send(mail);

how can i send an email as a part of a gmail-conversation via smtp?
Taking the same subject doesnt work...

tell me if you need more infos...
thanks in advance!

        MailMessage mail = new MailMessage();
        SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");

        mail.From = new MailAddress("@googlemail.com");
        mail.To.Add("@.com");
        mail.Subject = "(Somee.com notification) New order confirmation";
        mail.Body = "(Somee.com notification) New order confirmation";

        SmtpServer.Port = 587;
        SmtpServer.Credentials = new System.Net.NetworkCredential("", "");
        SmtpServer.EnableSsl = true;

        SmtpServer.Send(mail);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笛声青案梦长安 2024-12-13 22:26:35

您需要使用以下内容:

mail.Headers.Add("In-Reply-To", <messageid>);

您应该能够从上一封电子邮件的标头中获取的邮件 ID。只需查找“Message-Id”即可。

此答案提供了您可能需要添加的更多标头以尝试帮助线程在其他客户中。看来 gmail 现在也正在使用这些。

You'll need to use the following:

mail.Headers.Add("In-Reply-To", <messageid>);

The message id you should be able to get from the previous email's headers. Just look for "Message-Id".

This answer gives a few more headers you may want to add to try help threading in other clients. It seems maybe gmail is now using these, too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文