mirror of
https://github.com/friendica/friendica
synced 2025-05-01 23:04:24 +02:00
fix boolean field
This commit is contained in:
parent
2b8f067715
commit
4efba4d0cf
3 changed files with 6 additions and 6 deletions
|
@ -77,8 +77,8 @@ class Emailer
|
|||
"Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
|
||||
|
||||
// assemble the final multipart message body with the text and html types included
|
||||
$textBody = chunk_split(base64_encode($email->getMessage()));
|
||||
$htmlBody = chunk_split(base64_encode($email->getMessage(true)));
|
||||
$textBody = chunk_split(base64_encode($email->getMessage(true)));
|
||||
$htmlBody = chunk_split(base64_encode($email->getMessage()));
|
||||
$multipartMessageBody = "--" . $mimeBoundary . "\n" . // plain text section
|
||||
"Content-Type: text/plain; charset=UTF-8\n" .
|
||||
"Content-Transfer-Encoding: base64\n\n" .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue