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?

link|improve this question
feedback

closed as exact duplicate by Chris_O, Rarst Jan 23 at 12:23

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.

1 Answer

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 :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.