1
0

action.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta name="viewport" content="width=device-width">
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <title>Actionable emails e.g. reset password</title>
  7. <link href="styles.css" media="all" rel="stylesheet" type="text/css">
  8. </head>
  9. <body itemscope itemtype="http://schema.org/EmailMessage">
  10. <table class="body-wrap">
  11. <tr>
  12. <td></td>
  13. <td class="container" width="600">
  14. <div class="content">
  15. <table class="main" width="100%" cellpadding="0" cellspacing="0" itemprop="action" itemscope itemtype="http://schema.org/ConfirmAction">
  16. <tr>
  17. <td class="logo">
  18. <img src="logo.png">
  19. </td>
  20. </tr>
  21. <tr>
  22. <td class="content-wrap">
  23. <meta itemprop="name" content="Confirm Email"/>
  24. <table width="100%" cellpadding="0" cellspacing="0">
  25. <tr>
  26. <td class="content-block">
  27. Please confirm your email address by clicking the link below.
  28. </td>
  29. </tr>
  30. <tr>
  31. <td class="content-block">
  32. We may need to send you critical information about our service and it is important that we have an accurate email address.
  33. </td>
  34. </tr>
  35. <tr>
  36. <td class="content-block" itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler">
  37. <a href="#" class="btn-primary" itemprop="url">Confirm email address</a>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td class="content-block">
  42. &mdash; The Mailgunners
  43. </td>
  44. </tr>
  45. </table>
  46. </td>
  47. </tr>
  48. </table>
  49. <div class="footer">
  50. <table width="100%">
  51. <tr>
  52. <td class="aligncenter content-block">Follow <a href="#">Boooya</a> on Twitter.</td>
  53. </tr>
  54. </table>
  55. </div></div>
  56. </td>
  57. <td></td>
  58. </tr>
  59. </table>
  60. </body>
  61. </html>