PHP email wont send to specified address?
-
on my simple site i have a button and a textbox next to it, i have an external email php script that sends an email to the specified address once the button has been clicked however i need to be able to email someone by putting in the textbox someones email address, the code so far is below. the problem im having is that it wont send to the specified email address in the textbox, please help thanks. PHP <?php $Email_Name = $_GET['emailinput']; $to = Email_Name; $subject = "Test mail"; $message = "Hello!"; $from = "Ryan"; $headers = "From:" . $from; mail($to,$subject,$message,$headers); ?> HTML below <form action="email.php" method="get"> <input type="text" name="emailinput" /> <input type="button" value="Click Me!" /> </form>
-
Answer:
Your current hosting package or service MUST allow SMTP ( http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) to work. Otherwise, no email can be sent. Setting Up the SMTP Service: http://www.code-crafters.com/abilitymailserver1/tutorial_smtp.html PHP: Sending Email Tutorial (Text/HTML/Attachments): http://www.webcheatsheet.com/php/send_email_text_html_attachment.php Use any of the below sites to make the workable form you need: Just follow the instructions for making it and uploading file(s). Contact Form Generator: http://www.tele-pro.co.uk/scripts/contact_form/ WYSIWYG Form Maker (Easiest to Use): http://www.jotform.com/?gclid=CNKhqei1wJ4CFRQhnAod6laUqA http://www.thesitewizard.com/wizards/feedbackform.shtml http://www.form2email.net/ http://www.phpform.org/ Ron
Ryan Kelly at Yahoo! Answers Visit the source
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
Related Q & A:
- How to attach files from word pad to email and send?Best solution by Yahoo! Answers
- Can I send an email and block my address from the recipient?Best solution by Yahoo! Answers
- How can I forward my email to more than one address?Best solution by Yahoo! Answers
- How do I send pictures from my phone to my email address?Best solution by Yahoo! Answers
- How can I send an email to everyone in my yahoo address book at the same time?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.