mcmuney Posted May 14, 2009 Share Posted May 14, 2009 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 More sharing options...
Brian W Posted May 14, 2009 Share Posted May 14, 2009 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.