1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/ninja/mailers/Mailer.php

22 lines
536 B
PHP
Raw Normal View History

2013-12-25 22:34:42 +01:00
<?php namespace ninja\mailers;
2013-12-10 18:18:35 +01:00
use Mail;
2014-03-05 21:19:12 +01:00
class Mailer {
2013-12-10 18:18:35 +01:00
2014-03-27 13:25:31 +01:00
public function sendTo($toEmail, $fromEmail, $fromName, $subject, $view, $data = [])
2013-12-10 18:18:35 +01:00
{
$views = [
2014-01-08 00:59:06 +01:00
'emails.'.$view.'_html',
'emails.'.$view.'_text'
2013-12-10 18:18:35 +01:00
];
2014-01-08 00:59:06 +01:00
2014-02-20 15:31:46 +01:00
//$view = 'emails.' . $view;
2014-02-19 14:28:29 +01:00
2014-03-27 13:25:31 +01:00
Mail::queue($views, $data, function($message) use ($toEmail, $fromEmail, $fromName, $subject)
2014-01-08 00:59:06 +01:00
{
2014-03-27 13:25:31 +01:00
$message->to($toEmail)->from($fromEmail, $fromName)->sender($fromEmail, $fromName)
->replyTo($fromEmail, $fromName)->returnPath($fromEmail)->subject($subject);
2014-01-08 00:59:06 +01:00
});
2013-12-10 18:18:35 +01:00
}
}