You can send email with PHP Mailer with attachment and MIME type, with help of following libraries 1)PHP Mailer you can download latest version from github Example: php require ‘class.phpmailer.php’; $mail = new PHPMailer; $mail->IsSMTP(); // Set mailer to use SMTP $mail->Host = ‘smtp1.example.com;smtp2.example.com’; // Specify main and backup server $mail->SMTPAuth = true; // Enable… Continue reading Sending MIME Mail with PHP
