X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnewsletter_functions.php;h=5dcf9d87e28c1a9ec380d4743a786da46d398b00;hb=f5dc782d9f79c902829333b2edc36df1ba854071;hp=aa75f75f36dbe65949030e3950a160160005344c;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/libs/newsletter_functions.php b/inc/libs/newsletter_functions.php index aa75f75f36..5dcf9d87e2 100644 --- a/inc/libs/newsletter_functions.php +++ b/inc/libs/newsletter_functions.php @@ -167,15 +167,15 @@ function SEND_NEWSLETTER($TO, $SUBJECT, $MSG, $MODE) // Automatically insert URLs into newsletter if ((EXT_IS_ACTIVE("html")) && ($MODE == "html")) { // Send HTML mail - SEND_EMAIL($TO, $SUBJECT, HTML_INSERT_URLS($MSG), "Y"); + SEND_EMAIL($TO, $SUBJECT, HTML_INSERT_URLS($MSG), 'Y'); } else { // Send normal mail - SEND_EMAIL($TO, $SUBJECT, NL_INSERT_URLS($MSG), "N"); + SEND_EMAIL($TO, $SUBJECT, NL_INSERT_URLS($MSG), 'N'); } } else { // Regular send-out if ((EXT_IS_ACTIVE("html")) && ($MODE == "html")) { - SEND_EMAIL($TO, $SUBJECT, $MSG, "Y"); + SEND_EMAIL($TO, $SUBJECT, $MSG, 'Y'); } else { SEND_EMAIL($TO, $SUBJECT, $MSG); }