(Update) Remove Old Mailable

This commit is contained in:
HDVinnie
2018-06-11 21:39:36 -04:00
parent d560cd8951
commit 34e6edd592
-49
View File
@@ -1,49 +0,0 @@
<?php
/**
* NOTICE OF LICENSE
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;
class NewReply extends Mailable
{
use Queueable, SerializesModels;
public $user;
public $topic;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct(\App\User $user, \App\Topic $topic)
{
$this->user = $user;
$this->topic = $topic;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('emails.new_reply')
->from(config('other.email'), config('other.title'))
->subject('The topic ' . $this->topic->name . ' has a new reply');
}
}