X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnewsletter_functions.php;h=ba15c4c4c25d1d9483176bc2101aea4d31829cb9;hb=6c9a18aec9a6a24e12dc3dc36bbe42de4fdd96f9;hp=d7326670553f78fd4f927b7d04e7cd7a4a605ee3;hpb=508228c85fba8448d00865b1639cb8cd7a69e457;p=mailer.git diff --git a/inc/libs/newsletter_functions.php b/inc/libs/newsletter_functions.php index d732667055..ba15c4c4c2 100644 --- a/inc/libs/newsletter_functions.php +++ b/inc/libs/newsletter_functions.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer die HTML-Erweiterung * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -153,23 +153,23 @@ function NL_INSERT_URLS ($text) { } // -function SEND_NEWSLETTER ($TO, $SUBJECT, $MSG, $MODE) { +function SEND_NEWSLETTER ($to, $subject, $message, $MODE) { // Send mail away as HTML if (REQUEST_POST('auto_urls') == "Y") { // 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($message), "Y"); } else { // Send normal mail - SEND_EMAIL($TO, $SUBJECT, NL_INSERT_URLS($MSG), "N"); + SEND_EMAIL($to, $subject, NL_INSERT_URLS($message), "N"); } } else { // Regular send-out if ((EXT_IS_ACTIVE("html")) && ($MODE == "html")) { - SEND_EMAIL($TO, $SUBJECT, $MSG, "Y"); + SEND_EMAIL($to, $subject, $message, "Y"); } else { - SEND_EMAIL($TO, $SUBJECT, $MSG, "N"); + SEND_EMAIL($to, $subject, $message, "N"); } } }