anthonydamasco Posted December 11, 2006 Share Posted December 11, 2006 Hey, I wrote this mail script, and it used to work, I moved my site to a new server, now none of my mail scripts work..[code=php:0] $appid = mysql_insert_id(); $subject = "Online Web Application Form"; $message = "Dear Accu Staff member, The applicant chose $nearestlocation as their nearest location. The online application can be found here http://www.myserver.com/content If there are any problems, email [email protected]"; mail($to, $subject, $message, "From: Webmaster<[email protected]>\n X-Mailer: PHP/" . phpversion());[/code]is my script flawed, or do u think its a server issue? Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/ Share on other sites More sharing options...
simcoweb Posted December 11, 2006 Share Posted December 11, 2006 Do you get an error? Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/#findComment-139070 Share on other sites More sharing options...
anthonydamasco Posted December 11, 2006 Author Share Posted December 11, 2006 no, I have the script adding things a database, as well as using an include function at the end of it, and they seem to work fine. Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/#findComment-139073 Share on other sites More sharing options...
simcoweb Posted December 11, 2006 Share Posted December 11, 2006 Ok, then just for fun why don't you simplify your mail code to go like this:[code]<?php$to="[email protected]";$subject="Zippity Doo Dah It Worked";$message="By golly I think we found the problem!";$from="Me, Myself and I";mail($to, $subject, $message, $from);?>[/code]See if it works. Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/#findComment-139081 Share on other sites More sharing options...
anthonydamasco Posted December 11, 2006 Author Share Posted December 11, 2006 nope, even sent it to 3 differant accounds, yahoo, hotmail and gmail, not working.. I think its the server Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/#findComment-139085 Share on other sites More sharing options...
simcoweb Posted December 11, 2006 Share Posted December 11, 2006 Yeah, that's about as basic as it can get. Perhaps your host has a block on the PHP mail function due to spammers of something. Link to comment https://forums.phpfreaks.com/topic/30245-php-mail-problem/#findComment-139090 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.