mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-14 07:07:21 +08:00
3847a76134
- This ensures content notifications are not translated to receiver language. - This adds actual plaintext support for content notifications (Was previously just HTML as text view). - Shares same base class across all mail notifications. - Also cleaned up existing notification classes. Future cleanup requested via #4501
34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Activity\Notifications\Messages;
|
|
|
|
use BookStack\Activity\Models\Comment;
|
|
use BookStack\Activity\Notifications\MessageParts\ListMessageLine;
|
|
use BookStack\Entities\Models\Page;
|
|
use BookStack\Users\Models\User;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class CommentCreationNotification extends BaseActivityNotification
|
|
{
|
|
public function toMail(User $notifiable): MailMessage
|
|
{
|
|
/** @var Comment $comment */
|
|
$comment = $this->detail;
|
|
/** @var Page $page */
|
|
$page = $comment->entity;
|
|
|
|
$language = $notifiable->getLanguage();
|
|
|
|
return $this->newMailMessage($language)
|
|
->subject(trans('notifications.new_comment_subject', ['pageName' => $page->getShortName()], $language))
|
|
->line(trans('notifications.new_comment_intro', ['appName' => setting('app-name')], $language))
|
|
->line(new ListMessageLine([
|
|
trans('notifications.detail_page_name', [], $language) => $page->name,
|
|
trans('notifications.detail_commenter', [], $language) => $this->user->name,
|
|
trans('notifications.detail_comment', [], $language) => strip_tags($comment->html),
|
|
]))
|
|
->action(trans('notifications.action_view_comment', [], $language), $page->getUrl('#comment' . $comment->local_id))
|
|
->line($this->buildReasonFooterLine($language));
|
|
}
|
|
}
|