You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/Mime/Email.php
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,10 @@ class Email extends Message
43
43
private$html;
44
44
private$htmlCharset;
45
45
private$attachments = [];
46
-
private ?AbstractPart$cachedBody = null; // Used to avoid wrong body hash in DKIM signatures with multiple parts (e.g. HTML + TEXT) due to multiple boundaries.
46
+
/**
47
+
* @var AbstractPart|null
48
+
*/
49
+
private$cachedBody; // Used to avoid wrong body hash in DKIM signatures with multiple parts (e.g. HTML + TEXT) due to multiple boundaries.
0 commit comments