Possible Duplicate:
“Do not reply” appears in FROM on emails
When a person receives my blog, the FROM in the email reads, Do not Reply. Why doesn't my email address show?
When a person receives my blog, the FROM in the email reads, Do not Reply. Why doesn't my email address show? | |||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
Hey this sounds like there is hard coded value called Do not Reply. if you want to specify your email address then little change you need to do it in your send email file $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail("someone@example.com", "$subject",$message, "From:" . $email); for your reference here I placed url just go through it http://css-tricks.com/2866-sending-nice-html-email-with-php this resolves your problem :) | |||
|
feedback
|