Skip to content

Instantly share code, notes, and snippets.

@robinske
Created June 15, 2020 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinske/4656f520eb77dc59bf26f612560f4ac2 to your computer and use it in GitHub Desktop.
Save robinske/4656f520eb77dc59bf26f612560f4ac2 to your computer and use it in GitHub Desktop.
Example template for Twilio Verify email verification
<html>
<head>
<style type="text/css">
body, p, div {
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
}
a {
text-decoration: none;
}
</style>
<title></title>
</head>
<body>
<center>
<p>
More details about how to set up email verification in the <a href="https://www.twilio.com/docs/verify/email">documentation</a>.
</p>
<br />
<p>
Example 1 - just the code (no localization in the message):
</p>
<p>
The verification code is: <strong>{{twilio_code}}</strong>
</p>
<br/>
<p>
Example 2 - entire localized message and code:
</p>
<p>
<strong>{{twilio_message}}</strong>
</p>
<br/>
<p>
Example 3 - separate localized message and code:
</p>
<p>
{{twilio_message_without_code}}<strong>{{twilio_code}}</strong>
</p>
</center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment