website/web/templates/email/certification_secondary.html
Noah Petherbridge f0e69f78da Certification: Secondary Photo ID Workflow
* Add an Admin Certification Photo workflow where we can request the user to
  upload a secondary form of ID (government issued photo ID showing their
  face and date of birth).
* An admin rejection option can request secondary photo ID.
* It sends a distinct e-mail to the user apart from the regular rejection email
* It flags their cert photo as "Secondary Needed" forever: even if the user
  removes their cert photo and starts from scratch, it will immediately request
  secondary ID when uploading a new primary photo.
* Secondary photos are deleted from the server on both Approve and Reject by
  the admin account, for user privacy.
* If approved, a Secondary Approved=true boolean is stored in the database. This
  boolean is set to False if the user deletes their cert photo in the future.
2024-05-26 12:34:00 -07:00

34 lines
1.1 KiB
HTML

{{define "content"}}
<html>
<body bakground="#ffffff" color="#000000" link="#0000FF" vlink="#990099" alink="#FF0000">
<basefont face="Arial,Helvetica,sans-serif" size="3" color="#000000"></basefont>
<h1>A secondary form of photo ID verification is requested</h1>
<p>Dear {{.Data.Username}},</p>
<p>
An admin has reviewed your certification photo and is concerned that you may be
too young to sign up for nonshy.
</p>
<p>
To get your certification photo approved, you will need to upload a copy of an
official photo ID that shows your <strong>face</strong> and your <strong>date of birth</strong>.
All other information on your ID should be blacked out before sharing it.
</p>
<p>
Please see the Certification Photo upload page for more information:
</p>
<p>
<a href="{{.Data.URL}}" target="_blank">{{.Data.URL}}</a>
</p>
<p>
This is an automated e-mail; do not reply to this message.
</p>
</body>
</html>
{{end}}