81
PHP Mail
PHP mail() function is used to send email in PHP. You can send text message, html message and attachment with message using PHP mail() function.
PHP mail() function
Syntax
$to: specifies receiver or receivers of the mail. The receiver must be specified one of the following forms.
- [email protected]
- [email protected], [email protected]
- User <[email protected]>
- User <[email protected]>, Another User <[email protected]>
$subject: represents subject of the mail.
$message: represents message of the mail to be sent.
Note: Each line of the message should be separated with a CRLF ( rn ) and lines should not be larger than 70 characters.
$additional_headers (optional): specifies the additional headers such as From, CC, BCC etc. Extra additional headers should also be separated with CRLF ( rn ).
PHP Mail Example
File: mailer.php
If you run this code on the live server, it will send an email to the specified receiver.
PHP Mail: Send HTML Message
To send HTML message, you need to mention Content-type text/html in the message header.
Next TopicPHP Mail