Are your WordPress-sent emails looking a little… drab? By default, WordPress sends emails in plain text, which means no formatting, no nice colors, and definitely no images. If you want your welcome emails, password resets, or contact form notifications to look professional and engaging, you need to switch the mail type to HTML. Here’s a… Continue reading Sending Rich Emails: How to Set WordPress Mail Type to HTML
Tag: mail
Sending MIME Mail with PHP
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
