I am creating one construction website in core PHP. It is almost done.But now I want to add one page which can send E-Mails.My “TO”section will be editable but the “FROM” section will be the same for every time..How can I implement this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This can be achieved my PHP and HTML combination.. Let me brief you on the same/
Have email.php page which has to from and msg text fields. Make your FROM section will always be the read only mode. And have submit button “SEND” this is call your email_tranfer.php where you will receive all these POST params and send email by using mail() function of php. And same can be done in AJAX way also..
Thanks
Gururaj.