]> git.mxchange.org Git - friendica.git/blobdiff - include/Emailer.php
Merge pull request #3879 from zeroadam/Remove-Includes-#3873
[friendica.git] / include / Emailer.php
index b0cdc3fe63b556ad6dc0a67a61efd427b0b4622b..978b192189ea31db2eb357f301de015cc18679c6 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+use Friendica\Core\PConfig;
+
 require_once('include/email.php');
 
 class Emailer {
@@ -16,13 +18,13 @@ class Emailer {
         * @param additionalMailHeader  additions to the smtp mail header
         * @param optional uid      user id of the destination user
         */
-       static public function send($params) {
+       public static function send($params) {
 
                call_hooks('emailer_send_prepare', $params);
 
                $email_textonly = False;
                if (x($params,"uid")) {
-                       $email_textonly = get_pconfig($params['uid'], "system", "email_textonly");
+                       $email_textonly = PConfig::get($params['uid'], "system", "email_textonly");
                }
 
                $fromName = email_header_encode(html_entity_decode($params['fromName'],ENT_QUOTES,'UTF-8'),'UTF-8');
@@ -81,4 +83,3 @@ class Emailer {
                return $res;
        }
 }
-?>