mmarif4u Posted February 28, 2007 Share Posted February 28, 2007 Hello, I have page on my site there a user enter thier username And email.and submit the form, After submitting an email is sent to the user, But the problem is that last week i try that page it sent msg to the inbox but today i check it it sent mail to the junk/spam forlder.Gmail ok but yahoo and hotmail(the email is sent to junk). I dont know why. This is code: $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $message = "Good Day! Your personal account for the Straight-a program has been created! Your personal username and password are as follows: username: " . $cleaned_for_sql['uid'] . " password: " . $password . " To log in, proceed to the following address: http://www.domain.com.my You aren't stuck with this password! Your can change it at any time after you have logged in. If you have any problems, feel free to contact us at <[email protected]>. Webmaster "; mail($cleaned_for_sql['email'],"Your Password for the Straight-a Program", $message, $headers); Link to comment https://forums.phpfreaks.com/topic/40492-mail-sent-to-junk-folder/ Share on other sites More sharing options...
r-it Posted February 28, 2007 Share Posted February 28, 2007 with me it was the headers, can't you add more headers to your $headers variable because their spam filters probly think its spam Link to comment https://forums.phpfreaks.com/topic/40492-mail-sent-to-junk-folder/#findComment-195899 Share on other sites More sharing options...
mmarif4u Posted February 28, 2007 Author Share Posted February 28, 2007 Can u re arrange this code, where to modify. Link to comment https://forums.phpfreaks.com/topic/40492-mail-sent-to-junk-folder/#findComment-195901 Share on other sites More sharing options...
r-it Posted February 28, 2007 Share Posted February 28, 2007 go to this link and i think it should clear your problem http://framework.zend.com/manual/en/zend.mail.html Link to comment https://forums.phpfreaks.com/topic/40492-mail-sent-to-junk-folder/#findComment-195913 Share on other sites More sharing options...
mmarif4u Posted February 28, 2007 Author Share Posted February 28, 2007 Thanks r-it for the link. sorry this articles did not solve my problem. May be i have to think some more about this code. Link to comment https://forums.phpfreaks.com/topic/40492-mail-sent-to-junk-folder/#findComment-195921 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.