Searched refs:replyto (Results 1 – 4 of 4) sorted by relevance
11 protected $replyto = array(); variable in helper_plugin_bureaucracyau_actionmail62 if(!empty($this->replyto)) {63 $replyto = $mail->cleanAddress($this->replyto);64 $mail->setHeader('Reply-To', $replyto, false);147 $this->replyto[] = $value;
11 protected $replyto = array(); variable in helper_plugin_bureaucracy_actionmail 44 //build html&text table, collect replyto and subject68 if(!empty($this->replyto)) {69 $replyto = $mail->cleanAddress($this->replyto);70 $mail->setHeader('Reply-To', $replyto, false);96 * and collect values for subject and replyto155 if(!is_null($field->getParam('replyto'))) {156 $this->replyto[] = $value;
264 public function setReplyTo($replyto) argument266 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);