Syntax: BOOL Mail (string to, string subject, String message [, String additional_headers])
Description:
Mail () automatically mail the content specified in the message to the recipient specified in to, and if you want to send to a number of recipients, you can separate each mailing address with a comma (,) in to.
Example:
<?php
Mail ("rasmus@lerdorf.on.ca", "My Subject", "line 1\nline 2\nline 3");
?>
If there is an argument given to the fourth string, the string is inserted behind the header, which is typically an extra header, and a variety of extra headers are separated by a new line (newline).
Example:
<?php
Mail ("nobody@aol.com", "the subject", $message, "from:webmaster@ $SERVER _name\nreply-to:
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.