diff --git a/app/Mail/FormSubmissionRejected.php b/app/Mail/FormSubmissionRejected.php index afcdb9580..db36d23c1 100644 --- a/app/Mail/FormSubmissionRejected.php +++ b/app/Mail/FormSubmissionRejected.php @@ -6,13 +6,13 @@ class FormSubmissionRejected extends Mail { public function __construct(String $feedback = null) { - $this->subject = 'Application Rejected'; - $this->title = 'Your application has been rejected'; - $this->body = - 'Your application has been rejected.'; + $this->subject = 'Application Status Update'; + $this->title = 'THANK YOU FOR YOUR APPLICATION'; + $this->body = 'After careful review, our team has decided your application will not move forward.'; if (! is_null($feedback)) { - $this->body = 'Your application has been rejected. Please see comments below:

' . - e($feedback); + $this->body .= + ' Please see the comments below for more details or any follow-up resources.

' . + e($feedback); } $this->transactional = true; }