Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18467437
D10303.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
915 B
Referenced Files
None
Subscribers
None
D10303.diff
View Options
diff --git a/src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerAdapter.php b/src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerAdapter.php
--- a/src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerAdapter.php
+++ b/src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerAdapter.php
@@ -13,6 +13,11 @@
$this->mailer = new PHPMailer($use_exceptions = true);
$this->mailer->CharSet = 'utf-8';
+ // NOTE: This works around what seems to be a bug in SendGrid, see
+ // D10278. This affects other SMTP mailers too, but as long as they
+ // don't have an opposite bug to SendGrid's bug that should be OK.
+ $this->mailer->Encoding = 'quoted-printable';
+
// By default, PHPMailer sends one mail per recipient. We handle
// multiplexing higher in the stack, so tell it to send mail exactly
// like we ask.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sep 3 2025, 12:45 PM (6 w, 35 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8795146
Default Alt Text
D10303.diff (915 B)
Attached To
Mode
D10303: Send SMTP mail using quoted-printable encoding in all cases
Attached
Detach File
Event Timeline
Log In to Comment