mirror of
https://github.com/freescout-helpdesk/freescout.git
synced 2024-11-25 11:52:29 +01:00
32 lines
540 B
PHP
32 lines
540 B
PHP
<?php
|
|
/**
|
|
* User replied from wrong email address to the email notification.
|
|
*/
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
class UserEmailReplyError extends Mailable
|
|
{
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this->subject(__('Unable to process your update'))
|
|
->view('emails/user/email_reply_error');
|
|
}
|
|
}
|