Skip to content

Commit

Permalink
Merge pull request #218 from wri/feat/TM-898-application-rejection-wo…
Browse files Browse the repository at this point in the history
…rding

[TM-898] Update application rejection email copy.
  • Loading branch information
roguenet authored May 22, 2024
2 parents f373c71 + bf0950d commit fdce102
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/Mail/FormSubmissionRejected.php
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br><br>' .
e($feedback);
$this->body .=
' Please see the comments below for more details or any follow-up resources.<br><br>' .
e($feedback);
}
$this->transactional = true;
}
Expand Down

0 comments on commit fdce102

Please sign in to comment.