Fixed #8601 - Switched to “attachment” from “base64”

This commit is contained in:
snipe 2020-11-17 14:33:16 -08:00
parent 7ab44ca963
commit 7f126969d0
2 changed files with 2 additions and 1 deletions

View file

@ -51,6 +51,7 @@ MAIL_FROM_ADDR=you@example.com
MAIL_FROM_NAME='Snipe-IT'
MAIL_REPLYTO_ADDR=you@example.com
MAIL_REPLYTO_NAME='Snipe-IT'
MAIL_AUTO_EMBED_METHOD='attachment'
# --------------------------------------------
# REQUIRED: IMAGE LIBRARY

View file

@ -23,6 +23,6 @@ return [
|
*/
'method' => env('MAIL_AUTO_EMBED_METHOD', 'base64'),
'method' => env('MAIL_AUTO_EMBED_METHOD', 'attachment'),
];