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 anthony.damasco@myserver.com";
   
    mail($to, $subject, $message,
        "From: Webmaster<anthony.damasco@myserver.com>\n
        X-Mailer: PHP/" . phpversion());
[/code]

is my script flawed, or do u think its a server issue?
Link to comment
Share on other sites

Ok, then just for fun why don't you simplify your mail code to go like this:

[code]<?php
$to="youremail@yoursitename.com";
$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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.