Home
last modified time | relevance | path

Searched refs:replyto (Results 1 – 4 of 4) sorted by relevance

/plugin/bureaucracy-au/helper/
H A Dactionmail.php11 protected $replyto = array(); variable in helper_plugin_bureaucracyau_actionmail
62 if(!empty($this->replyto)) {
63 $replyto = $mail->cleanAddress($this->replyto);
64 $mail->setHeader('Reply-To', $replyto, false);
147 $this->replyto[] = $value;
/plugin/bureaucracyau/helper/
H A Dactionmail.php11 protected $replyto = array(); variable in helper_plugin_bureaucracyau_actionmail
62 if(!empty($this->replyto)) {
63 $replyto = $mail->cleanAddress($this->replyto);
64 $mail->setHeader('Reply-To', $replyto, false);
147 $this->replyto[] = $value;
/plugin/bureaucracy/helper/
H A Dactionmail.php11 protected $replyto = array(); variable in helper_plugin_bureaucracy_actionmail
68 if(!empty($this->replyto)) {
69 $replyto = $mail->cleanAddress($this->replyto);
70 $mail->setHeader('Reply-To', $replyto, false);
156 $this->replyto[] = $value;
/plugin/swiftmail/Swift/
H A DMessage.php264 public function setReplyTo($replyto) argument
266 if ($replyto)
268 if (!is_array($replyto)) $replyto = array($replyto);
269 foreach ($replyto as $key => $value)
271 if ($value instanceof Swift_Address) $replyto[$key] = $value->build();
274 $this->headers->set("Reply-To", $replyto);