60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Album;
|
|
use App\Facade\Theme;
|
|
use App\Photo;
|
|
use App\PhotoComment;
|
|
use App\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* E-mail notification to the poster of a comment that is sent when it has been approved.
|
|
* @package App\Mail
|
|
*/
|
|
class PhotoCommentRepliedTo extends MailableBase
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
private $album;
|
|
private $comment;
|
|
private $photo;
|
|
private $user;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(User $user, Album $album, Photo $photo, PhotoComment $comment)
|
|
{
|
|
$this->user = $user;
|
|
$this->album = $album;
|
|
$this->photo = $photo;
|
|
$this->comment = $comment;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
$subject = trans('email.photo_comment_replied_to_subject', ['album_name' => $this->album->name]);
|
|
|
|
return $this
|
|
->subject($subject)
|
|
->markdown(Theme::viewName('email.photo_comment_replied_to'))
|
|
->with([
|
|
'album' => $this->album,
|
|
'comment' => $this->comment,
|
|
'photo' => $this->photo,
|
|
'subject' => $subject,
|
|
'user' => $this->user
|
|
]);
|
|
}
|
|
}
|