]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/html_mail_functions.php
Another fix... :(
[mailer.git] / inc / libs / html_mail_functions.php
index f72b7d595579a5248d9aef1ca2e9daedb2226bf8..6b951f8a00d52f07057f44527b5286727acdbf28 100644 (file)
@@ -144,7 +144,7 @@ function insertUrlsIntoHtml ($text) {
        $text = ''; $PARTS[] = $test;
        foreach ($PARTS as $part) {
                $text .= $part;
-       }
+       } // END - foreach
 
        // Replace new-lines agains <br />-s and finally compile possible own HTML tags out...
        return compileCode(str_replace("\n", "<br />\n", $text));
@@ -156,7 +156,7 @@ function sendHtmlEmail($to, $subject, $message, $FROM) {
                // Send mail away as HTML
                $FROM = "Content-Type: text/html; charset=UTF-8\n" . $FROM;
                sendEmail($to, $subject, $message, 'N', $FROM);
-       }
+       } // END - if
 }
 
 //