This panel has been deprecated in favor of Nette Extras Mail Panel which also supports attachments and showing source of messages.
See: https://componette.com/nextras/mail-panel/
GIT: https://github.com/nextras/mail-panel
Panel for Nette Debug panel. Instead of sending, all e-mails are stored into session from which they can be viewed in debug bar. Supports plaintexts and HTML e-mail, multiple recipients etc.
- Authors: Jan Marek, Jan Drábek
- License: New BSD
Based on http://git.yavanna.cz/p/mailpanel/ by Jan Drábek and
Install library via composer:
composer require jandrabek/nette-mailpanel
Register different mailer in config.neon (or in something like config.development.neon)
services:
nette.mailer: JanDrabek\MailPanel\SessionMailer
nette:
debugger:
bar: [JanDrabek\MailPanel\MailPanel]
# Or when you register multiple extensions
# bar:
# - JanDrabek\MailPanel\MailPanel
class ExamplePresenter extends BasePresenter {
private $mailer;
public function injectMailer(Nette\Mail\IMailer $mailer) {
$this->mailer = $mailer;
}
public function renderDefault() {
$mail = new Nette\Mail\Message;
$mail->setFrom('[email protected]');
$mail->addTo('[email protected]');
$mail->setSubject('Subject');
$mail->setBody('Message body');
$this->mailer->send($mail);
}
}
Due to the method of populating mails into the iframe element with javascript, there can be some problems. When it happen, please, send me an e-mail or open an issue. Thanks :)