1

在我的应用程序中,我使用 SMTP 服务器身份验证从我的雅虎邮件 ID 发送邮件。发送邮件时,成功发送邮件,收件人也收到邮件。问题是雅虎没有在我的雅虎帐户中维护已发送的邮件副本。据我所知,我需要设置“在已发送文件夹中保存副本消息”以进行保存,但它只是在我从雅虎本身而不是从其他应用程序发送邮件时才起作用。

Gmail 没有发生同样的事情,因为它保存了从两者(Gmail 帐户和我的应用程序)发送的邮件。

需要在雅虎中进行哪些设置,或者我需要在我的应用程序中设置一些设置?

4

1 回答 1

0

EmailMessage如果可能,请尝试使用。

参考以下代码,看看它是否有效 -

// Create an email message and identify the Exchange service.
EmailMessage message = new EmailMessage(service);

// Add properties to the email message.
message.Subject = "Interesting";
message.Body = "The merger is finalized.";
message.ToRecipients.Add("user1@contoso.com");

// Send the email message and save a copy.
message.SendAndSaveCopy();

参考- 使用 EWS 托管 API 创建和发送电子邮件

于 2013-09-25T05:59:16.777 回答