The mockup disclaimer is appended after the whole HTML body in EmailSender.DoMockupAndSendEmailAsync.
With an auto-generated HTML from plain-text message, it outputs:
<!DOCTYPE html>
<html>
<head>
<title>Subject</title>
</head>
<body>
Message
</body>
</html>
<br />
<i>
This email was originally destined to the following recipients, and was mocked up because it was sent from a test environment.
<br />
Recipient (recipient-1@getproffer.net)
</i>
The disclaimer infos shouldn't be simply appended, but inserted at the end of the body.
For templated emails, we should us a reserved context key to insert it wherever the developer wants it.
The mockup disclaimer is appended after the whole HTML body in
EmailSender.DoMockupAndSendEmailAsync.With an auto-generated HTML from plain-text message, it outputs:
The disclaimer infos shouldn't be simply appended, but inserted at the end of the body.
For templated emails, we should us a reserved context key to insert it wherever the developer wants it.