]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/html_mail_functions.php
A lot variables renamed from all upper-case to hungarian notation
[mailer.git] / inc / libs / html_mail_functions.php
index 236cd6ee6f431ee976165d610a202c1c62f0ca31..7f607f7e2f1a97e8dd4075cd74ff54368ca1e65a 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Funktionen fuer die HTML-Erweiterung             *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -48,7 +53,7 @@ function HTML_ADD_VALID_TAGS() {
        return $OUT;
 }
 //
-function HTML_CHECK_TAGS($html {
+function HTML_CHECK_TAGS ($html) {
        $test = stripslashes($html);
        while (ereg("<", $test) && ereg(">", $test)) {
                $check = strtolower(substr($test, strpos($test, "<") + 1, strpos($test, ">") - strpos($test, "<") - 1));
@@ -151,13 +156,13 @@ function HTML_INSERT_URLS ($text) {
        return COMPILE_CODE(str_replace("\n", "<br />\n", $text));
 }
 //
-function SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM)
+function SEND_HTML_EMAIL($TO, $SUBJECT, $message, $FROM)
 {
        if (EXT_IS_ACTIVE("html_mail"))
        {
                // Send mail away as HTML
                $FROM = "Content-Type: text/html\n".$FROM;
-               SEND_EMAIL($TO, $SUBJECT, $MSG, 'N', $FROM);
+               SEND_EMAIL($TO, $SUBJECT, $message, 'N', $FROM);
        }
 }
 //