1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/app/Mail/UserEmailReplyError.php
2018-11-12 09:12:57 +00:00

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');
}
}