电子邮件去的垃圾邮件,而不是收件箱 [英] Email goes to spam instead of inbox

查看:276
本文介绍了电子邮件去的垃圾邮件,而不是收件箱的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有一个域名www.mycloudcctv.com在godaddy.com,我们已经创建了指向212.78.237.157一个子域cam.mycloudcctv.com
我们有第三方服务器(212.78.237.157)上运行的应用。这个应用程序要使用的电子邮件地址@警报mycloudcctv.com代表我们发送电子邮件。继code段(ASP.NET)被用来从(212.78.237.157)

We have a domain name "www.mycloudcctv.com" at godaddy.com and we have created a sub domain cam.mycloudcctv.com which points to 212.78.237.157 We have an application running on third party server (212.78.237.157). This application wants to send an email on our behalf using the email address "alerts@ mycloudcctv.com ". Following code snippet (ASP.NET) is being used to send the email from (212.78.237.157)



    var mailClient = new SmtpClient();

    mailClient.Credentials = new NetworkCredential { UserName = "alerts@mycloudcctv.com", Password = "xyz" };

    mailClient.Port = 25;
    mailClient.Host = "smtpout.secureserver.net"; 
    mailClient.EnableSsl = false;

    var mail = new MailMessage("alerts@mycloudcctv.com", "azharmalik3@hotmail.com", "Test Smtp server", "Testing mycloudcctv server") { IsBodyHtml = true };
    //Now Send the message
    mailClient.Send(mail);


一切工作正常和电子邮件正在不过,他们在Gmail / Hotmail的/雅虎的垃圾邮件/垃圾文件夹结束发送。你能请向我们提供必要的信息,以便我们的邮件进入收件箱,而不是垃圾邮件文件夹?

Everything works fine and emails are being sent however they end up in SPAM/JUNK folders of gmail/hotmail/yahoo. Could you please provide us necessary information so that our emails go to inbox instead of spam folders?

推荐答案

这是有很多复杂的问题,一个大问题,但它确实可以归结为三个主要方面:

this is a BIG question with lots of complex issues, but it really boils down to three main areas:


  1. 请问邮件来自已委托给提供电子邮件指定域的权威服务器?

  1. Does the email come from a server which has be delegated the authority to deliver emails for the specified domain?

是电子邮件超链接刚的内容,它含有可能会触发垃圾邮件刺客标记为垃圾邮件的文本。

Is the content of the email just hyperlinks and does it contain text which would trigger spam assassin to mark as spam.

是您的服务器列入黑名单的垃圾邮件

Is your server blacklisted for spam

有关1点研究如何设置SPF记录发送权限。 <一href=\"http://www.mydigitallife.info/how-to-set-up-and-create-sender-policy-framework-spf-domain-dns-txt-record-with-wizard/\" rel=\"nofollow\">http://www.mydigitallife.info/how-to-set-up-and-create-sender-policy-framework-spf-domain-dns-txt-record-with-wizard/

For point 1 look into how to setup SPF records for send authority. http://www.mydigitallife.info/how-to-set-up-and-create-sender-policy-framework-spf-domain-dns-txt-record-with-wizard/

有关2点收到垃圾邮件刺客的副本,并通过它运行你的电子邮件,看看比分。
http://spamassassin.apache.org/

For point 2 get a copy of spam assassin and run your emails through it to see the score. http://spamassassin.apache.org/

有关3点 http://whatismyipaddress.com/blacklist-check

这篇关于电子邮件去的垃圾邮件,而不是收件箱的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆