]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/addressbook/mailto.inc
Imported Upstream version 0.1~rc1~dfsg
[roundcube.git] / program / steps / addressbook / mailto.inc
1 <?php
2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/addressbook/mailto.inc                                  |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2007, RoundCube Dev. - Switzerland                      |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
11  | PURPOSE:                                                              |
12  |   Compose a recipient list with all selected contacts                 |
13  |                                                                       |
14  +-----------------------------------------------------------------------+
15  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16  +-----------------------------------------------------------------------+
17
18  $Id: copy.inc 471 2007-02-09 21:25:50Z thomasb $
19
20 */
21
22 $cid = get_input_value('_cid', RCUBE_INPUT_GET);
23 $recipients = null;
24 $mailto = array();
25
26 if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && $CONTACTS->ready)
27 {
28   $recipients = $CONTACTS->search($CONTACTS->primary_key, $cid);
29
30   while (is_object($recipients) && ($rec = $recipients->iterate()))
31     $mailto[] = format_email_recipient($rec['email'], $rec['name']);
32 }
33
34 if (!empty($mailto))
35 {
36   $mailto_str = join(', ', $mailto);
37   $mailto_id = substr(md5($mailto_str), 0, 16);
38   $_SESSION['mailto'][$mailto_id] = $mailto_str;
39   $OUTPUT->command('redirect', rcmail_url('compose', array('_mailto' => $mailto_id), 'mail'));
40 }
41 else
42   $OUTPUT->show_message('nocontactsfound', 'warning');
43
44
45 // send response
46 $OUTPUT->send();
47
48 ?>