Jump to content

php mail problem


anthonydamasco

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.