abhi_madhani Posted March 4, 2011 Share Posted March 4, 2011 Hi, I am using PHP mail() function to sent message. Following is the code, the message is received in email account, but as attachment, not displayed in the body section as normal message would. Please can you guys help, as why is this message going as attachment, but not being displayed in the body of email. Below is the url which gives preview as to what I mean. http://i56.tinypic.com/29fujxf.jpg $to = $_POST['to']; $subject = ' web visior'; $customer = stripslashes($_POST['customer']); $email = stripslashes($_POST['email']); $contactinfo = stripslashes($_POST['contactinfo']); $body = stripslashes($_POST['enquiry']); $header = 'From:'.$email.'\r\n'; $header = 'Reply-To:'.$email.'\r\n'; $header = 'X-Mailer: PHP/' . phpversion(); $header = 'Content-type: text/html\r\n'; $message = '<html><body> <table> <tr><td>From:'.$customer.'</td></tr> <tr><td>Email:'.$email.'</td></tr> <tr><td>Contact No'.$contactinfo.'</td></tr> <tr><td style="center"><b>Message:</b></td></tr> <tr><td>'.$body.'</td></tr> </body></html>'; Regards, Abhishek Quote Link to comment https://forums.phpfreaks.com/topic/229568-mail-function-normal-message-received-as-attachment/ Share on other sites More sharing options...
kenrbnsn Posted March 4, 2011 Share Posted March 4, 2011 You're putting the EOL characters in single quotes. To work correctly, then need to be in double quotes. Instead of '\r\n' use "\r\n" Ken Quote Link to comment https://forums.phpfreaks.com/topic/229568-mail-function-normal-message-received-as-attachment/#findComment-1182812 Share on other sites More sharing options...
abhi_madhani Posted March 4, 2011 Author Share Posted March 4, 2011 Thanks a lot. Ken To resolve this small mistake took me 3 hours, it might have been more, if PHPfreaks would not be there. Regards, Abhishek Quote Link to comment https://forums.phpfreaks.com/topic/229568-mail-function-normal-message-received-as-attachment/#findComment-1182849 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.