Jump to content

Mail Error Help


mcmuney

Recommended Posts

This line is giving me an error "."X-Mailer: PHP/" . phpversion()); ": Warning:  mail() [function.mail]: Bad parameters to mail() function, mail not sent. in

 

// Let's mail the user! 
    $mail = "[email protected]>\r\n";
    $subject = "Quote: Web Design - $domain"; 
    $message = "Name: $fullname
Company Name: $company
E-mail: $email
Phone: $phone
Quote Type: $quotetype
Domain Name: $domain
Desired Pages: $pages
Organization: $comments_organization
Competitors: $comments_competitors
Appealing Sites: $comments_appeal
Status: $comments_status
Do: $comments_do    
Comments: $comments"; 
    mail($mail, $subject, $message, 
        "From: $fullname<$email>\r\n" 
        ."X-Mailer: PHP/" . phpversion()); 
    echo "Confirmed email sent";

Link to comment
https://forums.phpfreaks.com/topic/158171-mail-error-help/
Share on other sites

use this instead, its cleaner and likely will fix your problem...

// Let's mail the user!
    $mail = "[email protected]>\r\n";
    $subject = "Quote: Web Design - $domain";
    $message = "Name: $fullname
Company Name: $company
E-mail: $email
Phone: $phone
Quote Type: $quotetype
Domain Name: $domain
Desired Pages: $pages
Organization: $comments_organization
Competitors: $comments_competitors
Appealing Sites: $comments_appeal
Status: $comments_status
Do: $comments_do   
Comments: $comments";
$header  = "From: $fullname<$email>\r\n";
$header .= "X-Mailer: PHP/" . phpversion();
    mail($mail, $subject, $message, $header);
    echo "Confirmed email sent";

Link to comment
https://forums.phpfreaks.com/topic/158171-mail-error-help/#findComment-834324
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.