hi i used email php script (Send PHP mail with Attachment) your script work but do not received full name , phone numbers, or address plz give me any solution.
Add Answer
hi i used email php script (Send PHP mail with Attachment) your script work but do not received full name , phone numbers, or address plz give me any solution.
You need to construct a message body something like this:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
$message_body = "Message from $sender_name\n"; $message_body .= "------------------------------\n"; $message_body .= "$message\n"; $message_body .= "------------------------------\n"; $message_body .= "$sender_name\n"; $message_body .= "$reply_to_email\n"; $message_body .= "$phone_number\n";
I have also updated the main code please check.