email-spam

Zend_Mail sent email is treated as SPAM

空扰寡人 提交于 2019-12-18 16:55:30
问题 Please tell me what I am doing wrong. I am sending an email using the Zend_Mail class like this: $message = <<<STR You have a new invoice! Sign in to your clientarea to see it. Best regards, Company name STR; $mail = new Zend_Mail(); $mail->setBodyText($message); $mail->setFrom('billing@company.com', 'Company.com'); $mail->addTo('client@email.com', 'Client Name'); $mail->setSubject('You have a new invoice!'); $mail->send(); It is received as a spam though. There are other applications such as

Good non-intrusive anti-spam email obfuscator?

霸气de小男生 提交于 2019-12-18 13:07:35
问题 I'm trying to come up with a JavaScript email obfuscator to reduce the chance for spam in emails listed on a web site. Right now I've got a JavaScript based obfuscator that uses a combination of HTML encoding & JavaScript to convert an obfuscated email into a normal email transparently. What I do is this: Format the "mailto:" part of the href in links to be HTML encoded like: mailto: I also encode the email, replacing the @ sign with (a) , so that the email reads something like: stackoverflow

Guidelines for email newsletter service

纵然是瞬间 提交于 2019-12-18 12:07:46
问题 I'm implementing a email newsletter sender service using .NET and Windows Server technologies. Are there comprehensive guidelines which could help avoiding emails being trapped by spam filters and other mechanisms? They should cover all aspects of (legal) bulk mail sending: SMTP configuration, DNS, HTML content, images, links within content etc. A simple example: is it better to embed images or load them from a server? It would be great if you could provide some empirical data to show the

Prevent sent emails treated as junk mails using php mail function

丶灬走出姿态 提交于 2019-12-17 02:22:56
问题 I wrote a PHP script to send emails. My script is like this: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: abc@yahoo.com' . "\r\n"; // Email Variables $toUser = "someone@yahoo.com"; // recipient $subject = "testing"; // subject $body = "<html><body><p> Example of including an image via html \<img\> tag: <br> <img src='../images/profile.jpg'> <br> My new picture <br></p></body></html>"; // content if (mail(

Combat spambots by hiding email address (display: none)

此生再无相见时 提交于 2019-12-13 02:44:29
问题 Is it possible to prevent spambots from crawling all over my email address if I set it display: none ? I had an idea for a little minigame if you will, where the user clicks the link for the email and it then displays one or two "are you sure you're not a bot" sort of questions. Once these have been answered, it then displayed the real link. The issue is I'm assuming that bots can see the link because it's obviously there in the HTML even if it's not visible. Is there a way around this? Also,

Is this junk input, from a bot filling up a form on my website, safe?

醉酒当歌 提交于 2019-12-11 14:29:41
问题 So I use PHP and have a contact form on my website. Once users fill up the form and submit, it will shoot an email to me. I have been receiving junk input from bot, I assume, like below. This is the result of print_r($_REQUEST) . I removed some parameter for simplicity. Array ( [name] => rycpufrwq [email] => raaszg@fqhzdm.com [company] => naCuklaLMab [website] => http://ujpbfhazkpzv.com/ [message] => cBimwx <a href=\"http://pxlahgqmdrhs.com/\">pxlahgqmdrhs</a>, [url=http://sjmbrhkycvbz.com/

Why my website emails go to SPAM box? [closed]

有些话、适合烂在心里 提交于 2019-12-10 09:24:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . All emails that my site is sending are going to SPAM box in Gmail (I haven't tested other email servers). I'm sending emails through Gmail using my own domain (via Google Apps). I send the emails using the PHPMailer library: $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->SMTPSecure =

How to make sure email you send is not automatically marked as spam?

徘徊边缘 提交于 2019-12-09 19:17:43
问题 I run a social video website. User's across varied geographic location use this website for e-mailing about the video contents to other people. But my clients report that e-mails they send are automatically marked as spam.I do not want my e-mails marked directed to the spam folder. What can i do to avoid this scenario? Thanks. 回答1: I'd recommend looking into sending your emails through Google Apps. You verify with google you own the domain and Google that you own the domain and then you can

X-Message-Delivery in Hotmail Messages

偶尔善良 提交于 2019-12-09 16:53:37
问题 Recently I stared deciphering the hotmail inbox/junk folder placement. After long searching I found out that Hotmail/Outlook is using their X-Message-Delivery tag they input in each mail, to determine alot of things. If you go to source of an e-mail you can see an X-Message-Delivery similar to this : Vj0xLjE7dXM9MDtsPTE7YT0wO0Q9MjtHRD0yO1NDTD00 which if you BASE64-Decode it you get V=1.1;us=0;l=1;a=0;D=2;GD=2;SCL=4 Based upon my research, I found out that following things are causing a

sending email with PHP (preventing from being placed in spam folder)

青春壹個敷衍的年華 提交于 2019-12-08 02:26:21
问题 i am trying to send email using PHP scripts... however, the recipient is receiving it in his/her SPAM folder -this is not the desired result (I would like to have it sent directly to their inbox so that I don't have to warn them to look in their SPAM folder). below is the code I use to send the email using PEAR... what changes can I make to prevent the emails from going into the SPAM folder? send("test.user@gmail.com", $headers, $body); ?> 回答1: In general, email is classified as spam or not