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:
commit
39bf4ed9eb
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue