0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Merge pull request #4349 from yurynix/master

Workaround for outlook, who doesn't like quoted-printable encoding
This commit is contained in:
Matt Enlow 2014-11-16 09:28:49 -07:00
commit 39bf4ed9eb

View file

@ -76,7 +76,8 @@ GhostMailer.prototype.send = function (message) {
message = _.extend(message, {
from: self.from(),
to: to,
generateTextFromHTML: true
generateTextFromHTML: true,
encoding: 'base64' // Outlook doesn't like default 'quoted-printable' encoding inside links when the url is splited with '='
});
return new Promise(function (resolve, reject) {