1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/app/ninja/mailers/Mailer.php

28 lines
648 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;
use Utils;
2013-12-10 18:18:35 +01:00
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-04-12 20:55:40 +02:00
Mail::send($views, $data, function($message) use ($toEmail, $fromEmail, $fromName, $subject)
{
$replyEmail = $fromEmail;
2014-11-19 20:51:53 +01:00
// http://stackoverflow.com/questions/2421234/gmail-appearing-to-ignore-reply-to
if ($toEmail != CONTACT_EMAIL)
{
$fromEmail = NINJA_FROM_EMAIL;
}
2014-11-09 17:32:09 +01:00
$message->to($toEmail)->from($fromEmail, $fromName)->replyTo($replyEmail, $fromName)->subject($subject);
2014-01-08 00:59:06 +01:00
});
2013-12-10 18:18:35 +01:00
}
}