spam

My mails are sent as spam, i use php mail()

余生颓废 提交于 2020-01-06 08:46:05
问题 I have a website which send a single mail for those who register, definitely not spam. And the thing is that I use mail() function in PHP but lots of people receive it as spam. $title = "title"; $body = "message"; $header = "MIME-Version: 1.0" . "\r\n"; $header .= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; $header .= "To: ".$_POST["name"]." <".$_POST["email"].">" . "\r\n"; $header .= "From: SteamBuy <contacto@steambuy.com.ar>" . "\r\n"; mail($_POST["email"], $title, $body,

My mails are sent as spam, i use php mail()

大兔子大兔子 提交于 2020-01-06 08:46:01
问题 I have a website which send a single mail for those who register, definitely not spam. And the thing is that I use mail() function in PHP but lots of people receive it as spam. $title = "title"; $body = "message"; $header = "MIME-Version: 1.0" . "\r\n"; $header .= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; $header .= "To: ".$_POST["name"]." <".$_POST["email"].">" . "\r\n"; $header .= "From: SteamBuy <contacto@steambuy.com.ar>" . "\r\n"; mail($_POST["email"], $title, $body,

Php Mailer problem - messages marked as spam - [closed]

人走茶凉 提交于 2020-01-04 06:24:48
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 8 years ago . A few days ago I upgraded Php Mailer and now some email providers my messages mark as spam. This is what I see in the headers of the marked messages: X

Php Mailer problem - messages marked as spam - [closed]

时光怂恿深爱的人放手 提交于 2020-01-04 06:24:21
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 8 years ago . A few days ago I upgraded Php Mailer and now some email providers my messages mark as spam. This is what I see in the headers of the marked messages: X

Detecting spammers with MySQL

我是研究僧i 提交于 2020-01-02 06:27:21
问题 I see an ever increasing number of users signing up on my site to just send duplicate SPAM messages to other users. I've added some server side code to detect duplicate messages with the following mysql query: SELECT count(content) as msgs_sent FROM messages WHERE sender_id = '.$sender_id.' GROUP BY content having count(content) > 10 The query works well but now they're getting around this by changing a few charctersr in their messages. Is there a way to detect this with MySQL or do I need to

C#.Net Messages are going to spam folder

て烟熏妆下的殇ゞ 提交于 2019-12-30 07:26:46
问题 I am sending email from my ASP.net web application. The mails are sending successfully with out fail but most of them are going to spam folder. Please help me to over come spam filter. My Send Mail code public void SendMail(string FromAddress, string ToAddress, string Subject, string BodyText) { MailMessage mailMsg = new MailMessage(); mailMsg.From = new MailAddress(FromAddress,"My Name"); mailMsg.To.Add(new MailAddress(ToAddress)); mailMsg.Subject = Subject; mailMsg.BodyEncoding = System

php mail() function gets spam email

若如初见. 提交于 2019-12-29 01:37:18
问题 All my emails I am sending in local WAMP or on server, with PHP mail() function, goes to SPAM folder always. While looking for the issue, I found we've to set headers like from id, reply to, return path, mime version, char type and charset.. I have set all of them, but still email goes to SPAM folder into my Gmail / Yahoo id, any clue? All email addresses, which I am using in from/to/replyto/return path existing in real and still it goes to SPAM, very strange ! 回答1: Take a close look at the

php mail function: legitimate mails marked as spam by gmail and hotmail

时光总嘲笑我的痴心妄想 提交于 2019-12-28 04:20:07
问题 My website sends emails to users using the PHP mail function. Hotmail and Gmail users don't receive them, or they end up in SPAM-folder. Here is the header of a message marked as SPAM by Gmail. What to do? Delivered-To: koopter1982@gmail.com Received: by 10.216.213.222 with SMTP id a72cs207473wep; Sat, 2 Oct 2010 04:26:47 -0700 (PDT) Received: by 10.216.3.19 with SMTP id 19mr3099233weg.108.1286018806068; Sat, 02 Oct 2010 04:26:46 -0700 (PDT) Return-Path: <admin@drt01.dco.fusa.be> Received:

bash script delete mails from specific address (pop3 account)

≯℡__Kan透↙ 提交于 2019-12-25 09:16:22
问题 I want to clean my mailbox from mails from specific address I have thousands of messages, I want to do this in bash script, and run it from time to time (a receive SPAM from different addresses, and unfortunately my "spam filters" have only small effect on them) 回答1: To interract with a mail server through command line, you could use either telnet or openssl . You can connect to your pop server using the following command (I've taken gmail as an example. You'll have to look for your email

Can someone help me out with phpmailer?

假装没事ソ 提交于 2019-12-24 19:23:13
问题 I've made a HTML email and everything has worked so far. I was planning to send it with PHP (using the mail(); function). However, when I did this, the mail did not arrive at hotmail and gmail accounts. I googled around a bit and people suggested to use PHPmailer. I downloaded PHPmailer and installed it on my server. So far, so good. But now I have the following code: <?php set_include_path('.:c:\domains\mydomain\wwwroot\phpmailer\phpmailer.inc.php'); set_include_path('.:c:\domains\mydomain