Danish Hasan asked:
I have a web form at designed in php. Can you provide me with a simple code to connect a textbox to an email account.
I have a web form at designed in php. Can you provide me with a simple code to connect a textbox to an email account.


2 Comments to 'How to direct values from php textboxes in a form to a email account?'
October 25, 2009
What i understand is you want to send the contents in textbox in an email.
For this you need to submit your form to another php page and then send email. See the following code
Now on mail.php
If SMTP settings are OK in php.ini, your email will be recieved at $strTo from $strFrom.
October 28, 2009
here all you have to do is
require_once(’whateveryounamemyfile’);
$MyMail=new MyMail($To=”Email address”, $Subject=”Subject”, $Msg=Message or body, $From=”From email address”, $ReplyTo=”reply to email address.or use from email address”);
$MyMail=new MyMail($To=”Email address”, $Subject=”Subject”, $Msg=Message or body, $From=”From email address”, $ReplyTo=”reply to email address.or use from email address”);
Leave a comment