X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fnewsletter_functions.php;h=2b03a73f11db3ee23eee893ff35f514d59b71bfc;hp=2a1553a3fc2a92f394f750f391e6824607004f4a;hb=6586600d8020147192e5f28ca2a3a0153f774d3c;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5 diff --git a/inc/libs/newsletter_functions.php b/inc/libs/newsletter_functions.php index 2a1553a3fc..2b03a73f11 100644 --- a/inc/libs/newsletter_functions.php +++ b/inc/libs/newsletter_functions.php @@ -167,17 +167,17 @@ 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); + SEND_EMAIL($TO, $SUBJECT, $MSG, "N"); } } }