Php method for submitting a form to send an email. Php method of submitting a form to send an email this article mainly introduces the php method of submitting a form to send an email. The example analyzes the php method of sending an email using a form, which is very useful, how to send an email by submitting a form in php
This article mainly introduces the php method of submitting a form to send an email. The example analyzes the php method of sending an email using a form, which is very useful. For more information, see
This example describes how to send an email by submitting a form in php. Share it with you for your reference. The details are as follows:
Save the following html code to the email.html file.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
Simple Send Mail Mail Form |
Save the backend php code to mail. php.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
If (empty ($ _ POST ['mailto']) { Die ("Recipient is blank! "); } If (empty ($ _ POST ['$ mailsubject']) { $ Mailsubject = ""; } If (empty ($ _ POST ['$ mailbody']) { $ Mailbody = ""; } $ Result = mail ($ mailto, $ mailsubject, $ mailbody ); // Send the email If ($ result ){ Echo "Email sent successfully! "; } Else { Echo "Email cocould not be sent ."; } ?> |
I hope this article will help you with php programming.
This article describes how to submit a php form to send an email. The example analyzes the php operation form to send an email, which is very useful and requires...