掩码从电子邮件地址smtp asp.net gmail



我正在使用MailMessage从web应用程序发送电子邮件。我相信我有正确的代码来"屏蔽"SendEmail()函数中的from名称

public static void SendEmail(string toAddress, string ccAddress, string bccAddress, string subject, string body, MemoryStream attachment, string attachmentName, bool isHtml, string fromAlias = "info@cipollainsurance.com")
    {
        using (MailMessage message = new MailMessage())
        {
            AlternateView htmlView = AlternateView.CreateAlternateViewFromString(AddHeaderAndFooter(subject, body).ToString(), new System.Net.Mime.ContentType("text/html"));
            var resources = LoadResources();
            foreach (LinkedResource resource in resources)
            {
                htmlView.LinkedResources.Add(resource);
            }
            message.AlternateViews.Add(htmlView);
            if (!string.IsNullOrEmpty(toAddress))
            {
                var addresses = toAddress.Split(',', ';');
                foreach (string address in addresses)
                {
                    message.To.Add(address);
                }
            }
            if (!string.IsNullOrEmpty(ccAddress))
            {
                var ccAddresses = ccAddress.Split(',', ';');
                foreach (string cc in ccAddresses)
                {
                    message.CC.Add(cc);
                }
            }
            if (!string.IsNullOrEmpty(bccAddress))
            {
                var bccAddresses = bccAddress.Split(',', ';');
                foreach (string bcc in bccAddresses)
                {
                    message.Bcc.Add(bcc);
                }
            }
            if (!string.IsNullOrWhiteSpace(fromAlias))
            {
                message.Sender = new MailAddress("info@cipollainsurance.com", fromAlias, System.Text.Encoding.ASCII);
            }
            message.Body = body;
            message.BodyEncoding = System.Text.Encoding.UTF8;
            message.Subject = subject;
            message.SubjectEncoding = System.Text.Encoding.UTF8;
            message.IsBodyHtml = isHtml;
            message.From = new MailAddress("info@cipollainsurance.com", "Cipolla Insurance");
            if (attachment != null)
            {
                message.Attachments.Add(new Attachment(attachment, attachmentName));
            }
            SmtpClient client = new SmtpClient();
            client.Send(message);
        }
    }

但是,from电子邮件地址仍然显示emailemail@webedgemedia.com,这是web.config中指定的。

<smtp from="info@cipollainsurance.com" deliveryMethod="Network">
    <network host="smtp.gmail.com" enableSsl="true" port="587" password="myPassword" userName="email@webedgemedia.com" />
</smtp>

有没有人能指出我在发送电子邮件info@cipollainsurance.com时遗漏了什么?

我不相信GMAIL允许你这样做——否则使用他们的服务作为垃圾邮件中继就太微不足道了。

你最多可以设置一个不同的REPLY-TO,但你的GMAIL(帐户)电子邮件仍然是FROM

最新更新