1
0
mirror of https://github.com/flarum/core.git synced 2025-08-01 14:10:37 +02:00

Use sender information from config

This commit is contained in:
Toby Zerner
2015-02-26 15:23:09 +10:30
parent 2884662723
commit f67098461d

View File

@@ -41,7 +41,6 @@ class EmailConfirmationMailer
$this->mailer->send(['text' => 'flarum::emails.confirm'], $data, function ($message) use ($user, $forumTitle) {
$message->to($user->email);
$message->subject('['.$forumTitle.'] Email Address Confirmation');
$message->from('noreply@localhost', $forumTitle);
});
}