]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use user field rather than re-building sms email over and over
authorEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:06:14 +0000 (00:06 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:06:14 +0000 (00:06 -0400)
darcs-hash:20080721040614-84dde-431def35d4e3c163df2b4f4e78bef7b3521be40a.gz

lib/mail.php

index 001376beace0f5328a1dda3632c246488fff350c..3bcb0923d707fff70df2eed061f5cc9c155476d7 100644 (file)
@@ -175,19 +175,16 @@ function mail_broadcast_notice_sms($notice) {
 function mail_send_notice($notice, $user) {
        $profile = $user->getProfile();
        $name = $profile->getBestName();
-       $carrier = Sms_carrier::staticGet($user->carrier);
-       $sms_email = $carrier->toEmailAddress($user->sms);
        $to = $name . ' <' . $sms_email . '>';
        $other = $notice->getProfile();
 
        $headers = array();
        $headers['From'] = $user->incomingemail;
-       $headers['To'] = $name . ' <' . $sms_email . '>';
-       $headers['Subject'] = sprintf(_('%s status on %s'), 
-                                                                 $other->getBestName(),
-                                                                 common_exact_date($notice->created));
+       $headers['To'] = $name . ' <' . $user->smsemail . '>';
+       $headers['Subject'] = sprintf(_('%s status'),
+                                                                 $other->getBestName());
        $body = $notice->content;
-       mail_send($sms_email, $headers, $body);
+       mail_send($user->smsemail, $headers, $body);
 }
 
 function mail_confirm_sms($code, $nickname, $address) {
@@ -198,7 +195,7 @@ function mail_confirm_sms($code, $nickname, $address) {
        $headers['To'] = $nickname . ' <' . $address . '>';
        $headers['Subject'] = _('SMS confirmation');
 
-       $body = "$nickname: confirm you own this number with this code:";
+       $body = "$nickname: confirm you own this phone number with this code:";
        $body .= "\n\n";
        $body .= $code;
        $body .= "\n\n";