]> git.mxchange.org Git - friendica.git/blobdiff - mod/invite.php
Reworked mod/item - fixing wrong thread parent and mail stuff
[friendica.git] / mod / invite.php
index 4f7abf36a35314e5593e8b9096bd4c0afa8023fd..84426c57848329eb973ffa4cf41f290c7d64cde2 100644 (file)
@@ -1,18 +1,15 @@
 <?php
-
 /**
- * module: invite.php
+ * Module: invite.php
  *
- * send email invitations to join social network
+ * Send email invitations to join social network
  *
  */
-
 use Friendica\App;
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
-
-require_once('include/email.php');
+use Friendica\Protocol\Email;
 
 function invite_post(App $a) {
 
@@ -35,7 +32,7 @@ function invite_post(App $a) {
        }
 
 
-       $recips  = ((x($_POST,'recipients')) ? explode("\n",$_POST['recipients']) : array());
+       $recips  = ((x($_POST,'recipients')) ? explode("\n",$_POST['recipients']) : []);
        $message = ((x($_POST,'message'))    ? notags(trim($_POST['message']))    : '');
 
        $total = 0;
@@ -78,7 +75,7 @@ function invite_post(App $a) {
                        $nmessage = $message;
                }
 
-               $res = mail($recip, email_header_encode( t('Please join us on Friendica'),'UTF-8'),
+               $res = mail($recip, Email::encodeHeader(t('Please join us on Friendica'),'UTF-8'),
                        $nmessage,
                        "From: " . $a->user['email'] . "\n"
                        . 'Content-type: text/plain; charset=UTF-8' . "\n"
@@ -139,7 +136,7 @@ function invite_content(App $a) {
                }
        }
 
-       $o = replace_macros($tpl, array(
+       $o = replace_macros($tpl, [
                '$form_security_token' => get_form_security_token("send_invite"),
                '$invite'              => t('Send invitations'),
                '$addr_text'           => t('Enter email addresses, one per line:'),
@@ -150,7 +147,7 @@ function invite_content(App $a) {
                        . "\r\n" . "\r\n" . System::baseUrl() . '/profile/' . $a->user['nickname']
                        . "\r\n" . "\r\n" . t('For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca') . "\r\n" . "\r\n"  ,
                '$submit'              => t('Submit')
-       ));
+       ]);
 
        return $o;
 }