How to send mail to someones e-mail address?

PHP email wont send to specified address?

Ryan Kelly at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

You forgot a $ in front of Email_Name. So it should be: $to = $Email_Name; Also, and this is just me being a little nit-picky, but your variable names don't seem to follow any coherent and consistent standard, such a camel casing or another. You have one variable that is all lower case, another that starts with caps, at least try and be consistent.

Red

A few tips. 1) Make sure your variables contain the data by echoing them out. 2) type=button is not valid for a submit button <input type="submit" value="click me" /> 3) This may need to be done online if you are not already as local servers need to be set up to send emails. ----------- And finally here is a mail script I know works. $subject = "Messages Received"; $message_body = "CONTENT HERE. \n"; $headers = "From: YOUR EMAIL HERE" . "\r\n" . "Reply-To: YOUR EMAIL HERE" . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $mail_response = mail("THERE EMAIL HERE" , $subject, $message_body, $headers);

Nik

I agree with the two above. From my past experience, your $to and $from variables need to also be real emails to actually work.

Sliff M

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.