Home
last modified time | relevance | path

Searched refs:mailer (Results 1 – 14 of 14) sorted by path

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSwiftMailerHandler.php31 protected $mailer; variable in Monolog\\Handler\\SwiftMailerHandler
41 …public function __construct(\Swift_Mailer $mailer, $message, $level = Logger::ERROR, bool $bubble … argument
45 $this->mailer = $mailer;
54 $this->mailer->send($this->buildMessage($content, $records));
/plugin/bez/cron/
H A Dfunctions.php121 $mailer = new Mailer();
125 // $mailer->Body = str_replace('%%resign_link%%', $resign_link, $body);
128 $mailer->to($to);
130 $mailer->subject($subject);
131 $mailer->setBody('', null, null, $body);
133 $mailer->send();
/plugin/bez/mdl/
H A DEntity.php173 $mailer = new Mailer();
174 $mailer->subject($this->getMailSubject());
196 $mailer->to("$name <$email>");
201 $mailer->setBody('', null, null, $content);
204 $mailer->send();
/plugin/discussion/
H A Daction.php1241 $mailer = new Mailer();
1264 $mailer->subject($subject_notify);
1265 $mailer->setBody($notify_text, $replace);
1269 $mailer->bcc($conf['notify']);
1270 $mailer->send();
1303 $mailer->send();
1324 $mailer->bcc($to);
1325 $mailer->send();
1333 $mailer->bcc($mail);
1339 $mailer->send();
[all …]
/plugin/feedback/
H A Daction.php94 $mailer = new Mailer();
95 $mailer->to($contact);
96 if($user) $mailer->setHeader('Reply-To', $user['mail']);
97 $mailer->subject($this->getLang('subject'));
103 $mailer->setBody(
108 $success = $mailer->send();
112 $mailer->to($user['mail']);
113 $mailer->subject($this->getLang('subject'));
114 $success = $mailer->send();
/plugin/gitbacked/action/
H A Deditcommit.php307 $mailer = new \Mailer();
308 $mailer->to($this->getEmailAddressOnErrorConfigured());
312 $mailer->subject($this->getLang($subject_id));
313 $mailer->setBody($template_text, $template_replacements, null, $template_html);
314 $ret = $mailer->send();
/plugin/infomail/
H A Daction.php200 $mailer = new Mailer();
201 $mailer->bcc($all_recipients);
202 $mailer->from($sender);
203 $mailer->subject($subject);
204 $mailer->setBody($mailtext, $data);
205 $mailer->send();
/plugin/recommend/helper/
H A Dmail.php26 $mailer = new Mailer();
27 $mailer->bcc($recipient);
28 $mailer->from($sender);
31 $mailer->subject($subject);
32 $mailer->setBody($mailtext, $replacements);
33 $mailer->send();
/plugin/smtp/
H A Daction.php40 $mailer = $event->data['mail'];
41 $body = $mailer->dump(); // this also prepares all internal variables of the mailer
/plugin/smtp/subtree/txtthinking/Mailer/
H A DREADME.md9 $ composer require txthinking/mailer
/plugin/structpublish/helper/
H A Dnotify.php71 $mailer = new Mailer();
72 $mailer->bcc($recipients);
75 $mailer->subject($subject);
77 $mailer->setBody($mailText);
78 $mailer->send();
/plugin/structtasks/_test/
H A DNotifiersTest.php308 $mailer = $this->createMock(\Mailer::class);
309 $mailer->expects($this->exactly($calls))
334 $mailer->expects($this->once())
340 $mailer->expects($this->exactly($calls))
344 $mailer->expects($this->never())
346 $mailer->expects($this->never())
358 $mailer
374 $mailer->expects($this->once())
398 $mailer->expects($this->once())
404 $mailer->expects($this->once())
[all …]
/plugin/structtasks/meta/
H A DAbstractNotifier.php141 $old_data, $mailer = NULL) { argument
142 if (is_null($mailer)) $mailer = new \Mailer();
169 $mailer->setBody($getLang($this::lang_key_prefix . '_text'),
173 $mailer->to($user);
174 $mailer->subject($subject);
175 $mailer->send();
/plugin/watchcycle/
H A Daction.php434 $mailer = new Mailer();
435 $mailer->to($mail);
436 $mailer->subject($this->getLang('mail subject'));
440 $mailer->setBody($text, null, null, $html);
442 if (!$mailer->send()) {