C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
PHP MailPHP 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() functionSyntax bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] ) $to: specifies receiver or receivers of the mail. The receiver must be specified one of the following forms.
$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 ( \r\n ) 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 ( \r\n ). PHP Mail ExampleFile: mailer.phpIf you run this code on the live server, it will send an email to the specified receiver. PHP Mail: Send HTML MessageTo send HTML message, you need to mention Content-type text/html in the message header. This is HTML heading"; $header = "From:xyz@example.com \r\n"; $header .= "MIME-Version: 1.0 \r\n"; $header .= "Content-type: text/html;charset=UTF-8 \r\n"; $result = mail ($to,$subject,$message,$header); if( $result == true ){ echo "Message sent successfully..."; }else{ echo "Sorry, unable to send mail..."; } ?> PHP Mail: Send Mail with AttachmentTo send message with attachment, you need to mention many header information which is used in the example given below.
Next TopicPHP Mail
|