Home
last modified time | relevance | path

Searched refs:rcpt (Results 1 – 2 of 2) sorted by path

/plugin/smtp/
H A Daction.php42 $rcpt = $event->data['to'] . ',' .
48 $rcpt,
/plugin/smtp/classes/
H A DMessage.php16 protected $rcpt; variable in splitbrain\\dokuwiki\\plugin\\smtp\\Message
21 * @param string $rcpt all recipients (TO, CC, BCC)
24 public function __construct($from, $rcpt, $body) { argument
26 $this->rcpt = $rcpt;
49 $rcpt = array();
52 $addresses = explode(',', $this->rcpt);
56 $rcpt[] = trim($matches[2]);
58 $rcpt[] = trim($addr);
62 $rcpt = array_filter($rcpt);
63 $rcpt = array_unique($rcpt);
[all …]