InterviewSolution
Saved Bookmarks
| 1. |
How to send email using php script? |
|
Answer» First, create a sendEmail.php file in web document root and we have to use the below-mentioned script in it to send email using a PHP script. Change the $to_email with a RECIPIENT email address, $body and $SUBJECT as you require, and $from_email with a sender email address here. Example$to_email = "[email PROTECTED]"; |
|