Hi, I have a website using wp-ecommerce. I needed to make it send emails to people ordering using the proper smtp server for the domain, and your plugin works well for that - apart from recipients of the emails as seeing the raw html.
The following is taken from the mail log.
From: "###########################" <websales@##############.co.uk>
To: ####@##############.co.uk
Bcc: ####@##############.org
Reply-To: websales@##############.co.uk
Date: 2016-01-24 23:40:05
Subject: Transaction Report
Delivery-URI: smtp:none:login://mail.##############.co.uk:587
<p><strong>Transaction Details</strong><br />
Sale Log ID: Purchase # 7</p>
<p>Transaction ID: 1EV52169BX8796625<br />...
If I send a test using the Postman test email tool, then there seem to be some additional lines of code between the header and email body.
From: Goats Milk Skin Care <websales@##############.co.uk>
To: pat@##############.org
Bcc: pat@##############.org
Reply-To: websales@##############.co.uk
Date: 2016-01-25 11:05:34
Subject: Postman SMTP Test (www.##############.co.uk)
Delivery-URI: smtp:none:login://mail.##############.co.uk:587
Content-Type: text/plain; charset = "UTF-8"
Content-Transfer-Encoding: 8bit
Hello!
Sent by Postman 1.7.2 - https://wordpress.org/plugins/postman-smtp/
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
.wporg-notification .im {
color: #888;
} /* undo a GMail-inserted style */
</style>
</head>
<body class="wporg-notification">
Is there something I can change in postman to get this working?
Many thanks
Patrick