3 * StatusNet, the distributed open-source microblogging tool
5 * utilities for sending email
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @author Robin Millette <millette@status.net>
27 * @author Sarven Capadisli <csarven@status.net>
28 * @copyright 2008 StatusNet, Inc.
29 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
30 * @link http://status.net/
33 if (!defined('STATUSNET') && !defined('LACONICA')) {
37 require_once 'Mail.php';
40 * return the configured mail backend
42 * Uses the $config array to make a mail backend. Cached so it is safe to call
45 * @return Mail backend
47 function mail_backend()
49 static $backend = null;
52 $backend = Mail::factory(common_config('mail', 'backend'),
53 common_config('mail', 'params') ?: array());
54 if (PEAR::isError($backend)) {
55 common_server_error($backend->getMessage(), 500);
62 * send an email to one or more recipients
64 * @param array $recipients array of strings with email addresses of recipients
65 * @param array $headers array mapping strings to strings for email headers
66 * @param string $body body of the email
68 * @return boolean success flag
70 function mail_send($recipients, $headers, $body)
73 // XXX: use Mail_Queue... maybe
74 $backend = mail_backend();
76 if (!isset($headers['Content-Type'])) {
77 $headers['Content-Type'] = 'text/plain; charset=UTF-8';
80 assert($backend); // throws an error if it's bad
81 $sent = $backend->send($recipients, $headers, $body);
83 } catch (PEAR_Exception $e) {
86 "Unable to send email - '{$e->getMessage()}'. "
87 . 'Is your mail subsystem set up correctly?'
94 * returns the configured mail domain
96 * Defaults to the server name.
98 * @return string mail domain, suitable for making email addresses.
100 function mail_domain()
102 $maildomain = common_config('mail', 'domain');
104 $maildomain = common_config('site', 'server');
110 * returns a good address for sending email from this server
112 * Uses either the configured value or a faked-up value made
113 * from the mail domain.
115 * @return string notify from address
117 function mail_notify_from()
119 $notifyfrom = common_config('mail', 'notifyfrom');
123 $domain = mail_domain();
125 $notifyfrom = '"'. str_replace('"', '\\"', common_config('site', 'name')) .'" <noreply@'.$domain.'>';
132 * sends email to a user
134 * @param User &$user user to send email to
135 * @param string $subject subject of the email
136 * @param string $body body of the email
137 * @param array $headers optional list of email headers
138 * @param string $address optional specification of email address
140 * @return boolean success flag
142 function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null)
145 $address = $user->email;
148 $recipients = $address;
149 $profile = $user->getProfile();
151 $headers['From'] = mail_notify_from();
152 $headers['To'] = $profile->getBestName() . ' <' . $address . '>';
153 $headers['Subject'] = $subject;
155 return mail_send($recipients, $headers, $body);
159 * Send an email to confirm a user's control of an email address
161 * @param User $user User claiming the email address
162 * @param string $code Confirmation code
163 * @param string $nickname Nickname of user
164 * @param string $address email address to confirm
166 * @see common_confirmation_code()
168 * @return success flag
170 function mail_confirm_address($user, $code, $nickname, $address, $url=null)
173 $url = common_local_url('confirmaddress', array('code' => $code));
176 // TRANS: Subject for address confirmation email.
177 $subject = _('Email address confirmation');
179 // TRANS: Body for address confirmation email.
180 // TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
181 // TRANS: %3$s is the URL to confirm at.
182 $body = sprintf(_("Hey, %1\$s.\n\n".
183 "Someone just entered this email address on %2\$s.\n\n" .
184 "If it was you, and you want to confirm your entry, ".
185 "use the URL below:\n\n\t%3\$s\n\n" .
186 "If not, just ignore this message.\n\n".
187 "Thanks for your time, \n%2\$s\n"),
189 common_config('site', 'name'),
194 return mail_to_user($user, $subject, $body, $headers, $address);
198 * notify a user of subscription by another user
200 * This is just a wrapper around the profile-based version.
202 * @param User $listenee user who is being subscribed to
203 * @param User $listener user who is subscribing
205 * @see mail_subscribe_notify_profile()
209 function mail_subscribe_notify($listenee, $listener)
211 $other = $listener->getProfile();
212 mail_subscribe_notify_profile($listenee, $other);
216 * notify a user of subscription by a profile (remote or local)
218 * This function checks to see if the listenee has an email
219 * address and wants subscription notices.
221 * @param User $listenee user who's being subscribed to
222 * @param Profile $other profile of person who's listening
226 function mail_subscribe_notify_profile($listenee, $other)
228 if ($other->hasRight(Right::EMAILONSUBSCRIBE) &&
229 $listenee->email && $listenee->emailnotifysub) {
231 $profile = $listenee->getProfile();
233 $name = $profile->getBestName();
235 $long_name = ($other->fullname) ?
236 ($other->fullname . ' (' . $other->nickname . ')') : $other->nickname;
238 $recipients = $listenee->email;
240 // use the recipient's localization
241 common_switch_locale($listenee->language);
243 $headers = _mail_prepare_headers('subscribe', $listenee->nickname, $other->nickname);
244 $headers['From'] = mail_notify_from();
245 $headers['To'] = $name . ' <' . $listenee->email . '>';
246 // TRANS: Subject of new-subscriber notification e-mail.
247 // TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
248 $headers['Subject'] = sprintf(_('%1$s is now following you on %2$s.'),
249 $other->getBestName(),
250 common_config('site', 'name'));
252 // TRANS: Main body of new-subscriber notification e-mail.
253 // TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename.
254 $body = sprintf(_('%1$s is now following you on %2$s.'),
256 common_config('site', 'name')) .
257 mail_profile_block($other) .
260 // reset localization
261 common_switch_locale();
262 mail_send($recipients, $headers, $body);
266 function mail_subscribe_pending_notify_profile($listenee, $other)
268 if ($other->hasRight(Right::EMAILONSUBSCRIBE) &&
269 $listenee->email && $listenee->emailnotifysub) {
271 $profile = $listenee->getProfile();
273 $name = $profile->getBestName();
275 $long_name = ($other->fullname) ?
276 ($other->fullname . ' (' . $other->nickname . ')') : $other->nickname;
278 $recipients = $listenee->email;
280 // use the recipient's localization
281 common_switch_locale($listenee->language);
283 $headers = _mail_prepare_headers('subscribe', $listenee->nickname, $other->nickname);
284 $headers['From'] = mail_notify_from();
285 $headers['To'] = $name . ' <' . $listenee->email . '>';
286 // TRANS: Subject of pending new-subscriber notification e-mail.
287 // TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
288 $headers['Subject'] = sprintf(_('%1$s would like to listen to '.
289 'your notices on %2$s.'),
290 $other->getBestName(),
291 common_config('site', 'name'));
293 // TRANS: Main body of pending new-subscriber notification e-mail.
294 // TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename.
295 $body = sprintf(_('%1$s would like to listen to your notices on %2$s. ' .
296 'You may approve or reject their subscription at %3$s'),
298 common_config('site', 'name'),
299 common_local_url('subqueue', array('nickname' => $listenee->nickname))) .
300 mail_profile_block($other) .
303 // reset localization
304 common_switch_locale();
305 mail_send($recipients, $headers, $body);
309 function mail_footer_block()
311 // TRANS: Common footer block for StatusNet notification emails.
312 // TRANS: %1$s is the StatusNet sitename,
313 // TRANS: %2$s is a link to the addressed user's e-mail settings.
314 return "\n\n" . sprintf(_('Faithfully yours,'.
317 "Change your email address or ".
318 "notification options at ".'%2$s'),
319 common_config('site', 'name'),
320 common_local_url('emailsettings')) . "\n";
324 * Format a block of profile info for a plaintext notification email.
326 * @param Profile $profile
329 function mail_profile_block($profile)
332 // TRANS: %1$s is the subscriber's profile URL, %2$s is the subscriber's location (or empty)
333 // TRANS: %3$s is the subscriber's homepage URL (or empty), %4%s is the subscriber's bio (or empty)
337 // TRANS: Profile info line in notification e-mail.
338 // TRANS: %s is a URL.
339 $out[] = sprintf(_("Profile: %s"), $profile->profileurl);
340 if ($profile->location) {
341 // TRANS: Profile info line in notification e-mail.
342 // TRANS: %s is a location.
343 $out[] = sprintf(_("Location: %s"), $profile->location);
345 if ($profile->homepage) {
346 // TRANS: Profile info line in notification e-mail.
347 // TRANS: %s is a homepage.
348 $out[] = sprintf(_("Homepage: %s"), $profile->homepage);
351 // TRANS: Profile info line in notification e-mail.
352 // TRANS: %s is biographical information.
353 $out[] = sprintf(_("Bio: %s"), $profile->bio);
356 $blocklink = common_local_url('block', array('profileid' => $profile->id));
357 // This'll let ModPlus add the remote profile info so it's possible
358 // to block remote users directly...
359 Event::handle('MailProfileInfoBlockLink', array($profile, &$blocklink));
361 // TRANS: This is a paragraph in a new-subscriber e-mail.
362 // TRANS: %s is a URL where the subscriber can be reported as abusive.
363 $out[] = sprintf(_('If you believe this account is being used abusively, ' .
364 'you can block them from your subscribers list and ' .
365 'report as spam to site administrators at %s.'),
369 return implode("\n", $out);
373 * notify a user of their new incoming email address
375 * User's email and incoming fields should already be updated.
377 * @param User $user user with the new address
381 function mail_new_incoming_notify($user)
383 $profile = $user->getProfile();
385 $name = $profile->getBestName();
387 $headers['From'] = $user->incomingemail;
388 $headers['To'] = $name . ' <' . $user->email . '>';
389 // TRANS: Subject of notification mail for new posting email address.
390 // TRANS: %s is the StatusNet sitename.
391 $headers['Subject'] = sprintf(_('New email address for posting to %s'),
392 common_config('site', 'name'));
394 // TRANS: Body of notification mail for new posting email address.
395 // TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
396 // TRANS: to to post by e-mail, %3$s is a URL to more instructions.
397 $body = sprintf(_("You have a new posting address on %1\$s.\n\n".
398 "Send email to %2\$s to post new messages.\n\n".
399 "More email instructions at %3\$s."),
400 common_config('site', 'name'),
401 $user->incomingemail,
402 common_local_url('doc', array('title' => 'email'))) .
405 mail_send($user->email, $headers, $body);
409 * generate a new address for incoming messages
411 * @todo check the database for uniqueness
413 * @return string new email address for incoming messages
415 function mail_new_incoming_address()
417 $prefix = common_confirmation_code(64);
418 $suffix = mail_domain();
419 return $prefix . '@' . $suffix;
423 * broadcast a notice to all subscribers with SMS notification on
425 * This function sends SMS messages to all users who have sms addresses;
426 * have sms notification on; and have sms enabled for this particular
429 * @param Notice $notice The notice to broadcast
431 * @return success flag
433 function mail_broadcast_notice_sms($notice)
435 // Now, get users subscribed to this profile
439 $UT = common_config('db','type')=='pgsql'?'"user"':'user';
440 $replies = $notice->getReplies();
441 $user->query('SELECT nickname, smsemail, incomingemail ' .
442 "FROM $UT LEFT OUTER JOIN subscription " .
443 "ON $UT.id = subscription.subscriber " .
444 'AND subscription.subscribed = ' . $notice->profile_id . ' ' .
445 'AND subscription.subscribed != subscription.subscriber ' .
446 // Users (other than the sender) who `want SMS notices':
447 "WHERE $UT.id != " . $notice->profile_id . ' ' .
448 "AND $UT.smsemail IS NOT null " .
449 "AND $UT.smsnotify = 1 " .
450 // ... where either the user _is_ subscribed to the sender
451 // (any of the "subscription" fields IS NOT null)
452 // and wants to get SMS for all of this scribe's notices...
453 'AND (subscription.sms = 1 ' .
454 // ... or where the user was mentioned in
455 // or replied-to with the notice:
456 ($replies ? sprintf("OR $UT.id in (%s)",
457 implode(',', $replies))
461 while ($user->fetch()) {
463 'Sending notice ' . $notice->id . ' to ' . $user->smsemail,
465 $success = mail_send_sms_notice_address($notice,
467 $user->incomingemail,
470 // XXX: Not sure, but I think that's the right thing to do
471 common_log(LOG_WARNING,
472 'Sending notice ' . $notice->id . ' to ' .
473 $user->smsemail . ' FAILED, cancelling.',
486 * send a notice to a user via SMS
488 * A convenience wrapper around mail_send_sms_notice_address()
490 * @param Notice $notice notice to send
491 * @param User $user user to receive notice
493 * @see mail_send_sms_notice_address()
495 * @return boolean success flag
497 function mail_send_sms_notice($notice, $user)
499 return mail_send_sms_notice_address($notice,
501 $user->incomingemail,
506 * send a notice to an SMS email address from a given address
508 * We use the user's incoming email address as the "From" address to make
509 * replying to notices easier.
511 * @param Notice $notice notice to send
512 * @param string $smsemail email address to send to
513 * @param string $incomingemail email address to set as 'from'
514 * @param string $nickname nickname to add to beginning
516 * @return boolean success flag
518 function mail_send_sms_notice_address($notice, $smsemail, $incomingemail, $nickname)
520 $to = $nickname . ' <' . $smsemail . '>';
522 $other = $notice->getProfile();
524 common_log(LOG_INFO, 'Sending notice ' . $notice->id .
525 ' to ' . $smsemail, __FILE__);
529 $headers['From'] = ($incomingemail) ? $incomingemail : mail_notify_from();
530 $headers['To'] = $to;
531 // TRANS: Subject line for SMS-by-email notification messages.
532 // TRANS: %s is the posting user's nickname.
533 $headers['Subject'] = sprintf(_('%s status'),
534 $other->getBestName());
536 $body = $notice->content;
538 return mail_send($smsemail, $headers, $body);
542 * send a message to confirm a claim for an SMS number
544 * @param string $code confirmation code
545 * @param string $nickname nickname of user claiming number
546 * @param string $address email address to send the confirmation to
548 * @see common_confirmation_code()
552 function mail_confirm_sms($code, $nickname, $address)
554 $recipients = $address;
556 $headers['From'] = mail_notify_from();
557 $headers['To'] = $nickname . ' <' . $address . '>';
558 // TRANS: Subject line for SMS-by-email address confirmation message.
559 $headers['Subject'] = _('SMS confirmation');
561 // TRANS: Main body heading for SMS-by-email address confirmation message.
562 // TRANS: %s is the addressed user's nickname.
563 $body = sprintf(_('%s: confirm you own this phone number with this code:'), $nickname);
568 mail_send($recipients, $headers, $body);
572 * send a mail message to notify a user of a 'nudge'
574 * @param User $from user nudging
575 * @param User $to user being nudged
577 * @return boolean success flag
579 function mail_notify_nudge($from, $to)
581 common_switch_locale($to->language);
582 // TRANS: Subject for 'nudge' notification email.
583 // TRANS: %s is the nudging user.
584 $subject = sprintf(_('You have been nudged by %s'), $from->nickname);
586 $from_profile = $from->getProfile();
588 // TRANS: Body for 'nudge' notification email.
589 // TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
590 // TRANS: %3$s is a URL to post notices at.
591 $body = sprintf(_("%1\$s (%2\$s) is wondering what you are up to ".
592 "these days and is inviting you to post some news.\n\n".
593 "So let's hear from you :)\n\n".
595 "Don't reply to this email; it won't get to them."),
596 $from_profile->getBestName(),
598 common_local_url('all', array('nickname' => $to->nickname))) .
600 common_switch_locale();
602 $headers = _mail_prepare_headers('nudge', $to->nickname, $from->nickname);
604 return mail_to_user($to, $subject, $body, $headers);
608 * send a message to notify a user of a direct message (DM)
610 * This function checks to see if the recipient wants notification
611 * of DMs and has a configured email address.
613 * @param Message $message message to notify about
614 * @param User $from user sending message; default to sender
615 * @param User $to user receiving message; default to recipient
617 * @return boolean success code
619 function mail_notify_message($message, $from=null, $to=null)
621 if (is_null($from)) {
622 $from = User::getKV('id', $message->from_profile);
626 $to = User::getKV('id', $message->to_profile);
629 if (is_null($to->email) || !$to->emailnotifymsg) {
633 common_switch_locale($to->language);
634 // TRANS: Subject for direct-message notification email.
635 // TRANS: %s is the sending user's nickname.
636 $subject = sprintf(_('New private message from %s'), $from->nickname);
638 $from_profile = $from->getProfile();
640 // TRANS: Body for direct-message notification email.
641 // TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
642 // TRANS: %3$s is the message content, %4$s a URL to the message,
643 $body = sprintf(_("%1\$s (%2\$s) sent you a private message:\n\n".
644 "------------------------------------------------------\n".
646 "------------------------------------------------------\n\n".
647 "You can reply to their message here:\n\n".
649 "Don't reply to this email; it won't get to them."),
650 $from_profile->getBestName(),
653 common_local_url('newmessage', array('to' => $from->id))) .
656 $headers = _mail_prepare_headers('message', $to->nickname, $from->nickname);
658 common_switch_locale();
659 return mail_to_user($to, $subject, $body, $headers);
663 * Notify a user that one of their notices has been chosen as a 'fave'
665 * Doesn't check that the user has an email address nor if they
666 * want to receive notification of faves. Maybe this happens higher
669 * @param User $other The user whose notice was faved
670 * @param User $user The user who faved the notice
671 * @param Notice $notice The notice that was faved
675 function mail_notify_fave($other, $user, $notice)
677 if (!$user->hasRight(Right::EMAILONFAVE)) {
681 $profile = $user->getProfile();
682 if ($other->hasBlocked($profile)) {
683 // If the author has blocked us, don't spam them with a notification.
687 $bestname = $profile->getBestName();
689 common_switch_locale($other->language);
691 // TRANS: Subject for favorite notification e-mail.
692 // TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
693 $subject = sprintf(_('%1$s (@%2$s) added your notice as a favorite'), $bestname, $user->nickname);
695 // TRANS: Body for favorite notification e-mail.
696 // TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created,
697 // TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
698 // TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
699 // TRANS: %7$s is the adding user's nickname.
700 $body = sprintf(_("%1\$s (@%7\$s) just added your notice from %2\$s".
701 " as one of their favorites.\n\n" .
702 "The URL of your notice is:\n\n" .
704 "The text of your notice is:\n\n" .
706 "You can see the list of %1\$s's favorites here:\n\n" .
709 common_exact_date($notice->created),
710 common_local_url('shownotice',
711 array('notice' => $notice->id)),
713 common_local_url('showfavorites',
714 array('nickname' => $user->nickname)),
715 common_config('site', 'name'),
719 $headers = _mail_prepare_headers('fave', $other->nickname, $user->nickname);
721 common_switch_locale();
722 mail_to_user($other, $subject, $body, $headers);
726 * Notify a user that they have received an "attn:" message AKA "@-reply"
728 * @param User $user The user who recevied the notice
729 * @param Notice $notice The notice that was sent
733 function mail_notify_attn($user, $notice)
735 if (!$user->email || !$user->emailnotifyattn) {
739 $sender = $notice->getProfile();
741 if ($sender->id == $user->id) {
745 if (!$sender->hasRight(Right::EMAILONREPLY)) {
749 if ($user->hasBlocked($sender)) {
750 // If the author has blocked us, don't spam them with a notification.
754 $bestname = $sender->getBestName();
756 common_switch_locale($user->language);
758 if ($notice->hasConversation()) {
759 $conversationUrl = common_local_url('conversation',
760 array('id' => $notice->conversation)).'#notice-'.$notice->id;
761 // TRANS: Line in @-reply notification e-mail. %s is conversation URL.
762 $conversationEmailText = sprintf(_("The full conversation can be read here:\n\n".
763 "\t%s"), $conversationUrl) . "\n\n";
765 $conversationEmailText = '';
768 // TRANS: E-mail subject for notice notification.
769 // TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
770 $subject = sprintf(_('%1$s (@%2$s) sent a notice to your attention'), $bestname, $sender->nickname);
772 // TRANS: Body of @-reply notification e-mail.
773 // TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename,
774 // TRANS: %3$s is a URL to the notice, %4$s is the notice text,
775 // TRANS: %5$s is the text "The full conversation can be read here:" and a URL to the full conversion if it exists (otherwise empty),
776 // TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user,
777 $body = sprintf(_("%1\$s just sent a notice to your attention (an '@-reply') on %2\$s.\n\n".
778 "The notice is here:\n\n".
783 "You can reply back here:\n\n".
785 "The list of all @-replies for you here:\n\n" .
787 $sender->getFancyName(),//%1
788 common_config('site', 'name'),//%2
789 common_local_url('shownotice',
790 array('notice' => $notice->id)),//%3
791 $notice->content,//%4
792 $conversationEmailText,//%5
793 common_local_url('newnotice',
794 array('replyto' => $sender->nickname, 'inreplyto' => $notice->id)),//%6
795 common_local_url('replies',
796 array('nickname' => $user->nickname))) . //%7
798 $headers = _mail_prepare_headers('mention', $user->nickname, $sender->nickname);
800 common_switch_locale();
801 mail_to_user($user, $subject, $body, $headers);
805 * Prepare the common mail headers used in notification emails
807 * @param string $msg_type type of message being sent to the user
808 * @param string $to nickname of the receipient
809 * @param string $from nickname of the user triggering the notification
811 * @return array list of mail headers to include in the message
813 function _mail_prepare_headers($msg_type, $to, $from)
816 'X-StatusNet-MessageType' => $msg_type,
817 'X-StatusNet-TargetUser' => $to,
818 'X-StatusNet-SourceUser' => $from,
819 'X-StatusNet-Domain' => common_config('site', 'server')
826 * Send notification emails to group administrator.
828 * @param User_group $group
829 * @param Profile $joiner
831 function mail_notify_group_join($group, $joiner)
833 // This returns a Profile query...
834 $admin = $group->getAdmins();
835 while ($admin->fetch()) {
836 // We need a local user for email notifications...
837 $adminUser = User::getKV('id', $admin->id);
838 // @fixme check for email preference?
839 if ($adminUser && $adminUser->email) {
840 // use the recipient's localization
841 common_switch_locale($adminUser->language);
843 $headers = _mail_prepare_headers('join', $admin->nickname, $joiner->nickname);
844 $headers['From'] = mail_notify_from();
845 $headers['To'] = $admin->getBestName() . ' <' . $adminUser->email . '>';
846 // TRANS: Subject of group join notification e-mail.
847 // TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
848 $headers['Subject'] = sprintf(_('%1$s has joined '.
849 'your group %2$s on %3$s'),
850 $joiner->getBestName(),
851 $group->getBestName(),
852 common_config('site', 'name'));
854 // TRANS: Main body of group join notification e-mail.
855 // TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
856 // TRANS: %4$s is a block of profile info about the subscriber.
857 // TRANS: %5$s is a link to the addressed user's e-mail settings.
858 $body = sprintf(_('%1$s has joined your group %2$s on %3$s.'),
859 $joiner->getFancyName(),
860 $group->getFancyName(),
861 common_config('site', 'name')) .
862 mail_profile_block($joiner) .
865 // reset localization
866 common_switch_locale();
867 mail_send($adminUser->email, $headers, $body);
874 * Send notification emails to group administrator.
876 * @param User_group $group
877 * @param Profile $joiner
879 function mail_notify_group_join_pending($group, $joiner)
881 $admin = $group->getAdmins();
882 while ($admin->fetch()) {
883 // We need a local user for email notifications...
884 $adminUser = User::getKV('id', $admin->id);
885 // @fixme check for email preference?
886 if ($adminUser && $adminUser->email) {
887 // use the recipient's localization
888 common_switch_locale($adminUser->language);
890 $headers = _mail_prepare_headers('join', $admin->nickname, $joiner->nickname);
891 $headers['From'] = mail_notify_from();
892 $headers['To'] = $admin->getBestName() . ' <' . $adminUser->email . '>';
893 // TRANS: Subject of pending group join request notification e-mail.
894 // TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
895 $headers['Subject'] = sprintf(_('%1$s wants to join your group %2$s on %3$s.'),
896 $joiner->getBestName(),
897 $group->getBestName(),
898 common_config('site', 'name'));
900 // TRANS: Main body of pending group join request notification e-mail.
901 // TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
902 // TRANS: %4$s is the URL to the moderation queue page.
903 $body = sprintf(_('%1$s would like to join your group %2$s on %3$s. ' .
904 'You may approve or reject their group membership at %4$s'),
905 $joiner->getFancyName(),
906 $group->getFancyName(),
907 common_config('site', 'name'),
908 common_local_url('groupqueue', array('nickname' => $group->nickname))) .
909 mail_profile_block($joiner) .
912 // reset localization
913 common_switch_locale();
914 mail_send($adminUser->email, $headers, $body);