message.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width" />
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <title>Simple Transactional Email</title>
  7. <style>
  8. /* -------------------------------------
  9. GLOBAL RESETS
  10. ------------------------------------- */
  11. /*All the styling goes here*/
  12. img {
  13. border: none;
  14. -ms-interpolation-mode: bicubic;
  15. max-width: 100%;
  16. }
  17. body {
  18. background-color: #f6f6f6;
  19. font-family: sans-serif;
  20. -webkit-font-smoothing: antialiased;
  21. font-size: 14px;
  22. line-height: 1.4;
  23. margin: 0;
  24. padding: 0;
  25. -ms-text-size-adjust: 100%;
  26. -webkit-text-size-adjust: 100%;
  27. }
  28. table {
  29. border-collapse: separate;
  30. mso-table-lspace: 0pt;
  31. mso-table-rspace: 0pt;
  32. width: 100%; }
  33. table td {
  34. font-family: sans-serif;
  35. font-size: 14px;
  36. vertical-align: top;
  37. }
  38. /* -------------------------------------
  39. BODY & CONTAINER
  40. ------------------------------------- */
  41. .body {
  42. background-color: #f6f6f6;
  43. width: 100%;
  44. }
  45. /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
  46. .container {
  47. display: block;
  48. margin: 0 auto !important;
  49. /* makes it centered */
  50. max-width: 580px;
  51. padding: 10px;
  52. width: 580px;
  53. }
  54. /* This should also be a block element, so that it will fill 100% of the .container */
  55. .content {
  56. box-sizing: border-box;
  57. display: block;
  58. margin: 0 auto;
  59. max-width: 580px;
  60. padding: 10px;
  61. }
  62. /* -------------------------------------
  63. HEADER, FOOTER, MAIN
  64. ------------------------------------- */
  65. .main {
  66. background: #ffffff;
  67. border-radius: 3px;
  68. width: 100%;
  69. }
  70. .wrapper {
  71. box-sizing: border-box;
  72. padding: 20px;
  73. }
  74. .content-block {
  75. padding-bottom: 10px;
  76. padding-top: 10px;
  77. }
  78. .footer {
  79. clear: both;
  80. margin-top: 10px;
  81. text-align: center;
  82. width: 100%;
  83. }
  84. .footer td,
  85. .footer p,
  86. .footer span,
  87. .footer a {
  88. color: #999999;
  89. font-size: 12px;
  90. text-align: center;
  91. }
  92. /* -------------------------------------
  93. TYPOGRAPHY
  94. ------------------------------------- */
  95. h1,
  96. h2,
  97. h3,
  98. h4 {
  99. color: #000000;
  100. font-family: sans-serif;
  101. font-weight: 400;
  102. line-height: 1.4;
  103. margin: 0;
  104. margin-bottom: 30px;
  105. }
  106. h1 {
  107. font-size: 35px;
  108. font-weight: 300;
  109. text-align: center;
  110. text-transform: capitalize;
  111. }
  112. p,
  113. ul,
  114. ol {
  115. font-family: sans-serif;
  116. font-size: 14px;
  117. font-weight: normal;
  118. margin: 0;
  119. margin-bottom: 15px;
  120. }
  121. p li,
  122. ul li,
  123. ol li {
  124. list-style-position: inside;
  125. margin-left: 5px;
  126. }
  127. a {
  128. color: #3498db;
  129. text-decoration: underline;
  130. }
  131. /* -------------------------------------
  132. BUTTONS
  133. ------------------------------------- */
  134. .btn {
  135. box-sizing: border-box;
  136. width: 100%; }
  137. .btn > tbody > tr > td {
  138. padding-bottom: 15px; }
  139. .btn table {
  140. width: auto;
  141. }
  142. .btn table td {
  143. background-color: #ffffff;
  144. border-radius: 5px;
  145. text-align: center;
  146. }
  147. .btn a {
  148. background-color: #ffffff;
  149. border: solid 1px #3498db;
  150. border-radius: 5px;
  151. box-sizing: border-box;
  152. color: #3498db;
  153. cursor: pointer;
  154. display: inline-block;
  155. font-size: 14px;
  156. font-weight: bold;
  157. margin: 0;
  158. padding: 12px 25px;
  159. text-decoration: none;
  160. }
  161. .btn-primary table td {
  162. background-color: #3498db;
  163. }
  164. .btn-primary a {
  165. background-color: #3498db;
  166. border-color: #3498db;
  167. color: #ffffff;
  168. }
  169. /* -------------------------------------
  170. OTHER STYLES THAT MIGHT BE USEFUL
  171. ------------------------------------- */
  172. .last {
  173. margin-bottom: 0;
  174. }
  175. .first {
  176. margin-top: 0;
  177. }
  178. .align-center {
  179. text-align: center;
  180. }
  181. .align-right {
  182. text-align: right;
  183. }
  184. .align-left {
  185. text-align: left;
  186. }
  187. .clear {
  188. clear: both;
  189. }
  190. .mt0 {
  191. margin-top: 0;
  192. }
  193. .mb0 {
  194. margin-bottom: 0;
  195. }
  196. .preheader {
  197. color: transparent;
  198. display: none;
  199. height: 0;
  200. max-height: 0;
  201. max-width: 0;
  202. opacity: 0;
  203. overflow: hidden;
  204. mso-hide: all;
  205. visibility: hidden;
  206. width: 0;
  207. }
  208. .powered-by a {
  209. text-decoration: none;
  210. }
  211. hr {
  212. border: 0;
  213. border-bottom: 1px solid #f6f6f6;
  214. margin: 20px 0;
  215. }
  216. /* -------------------------------------
  217. RESPONSIVE AND MOBILE FRIENDLY STYLES
  218. ------------------------------------- */
  219. @media only screen and (max-width: 620px) {
  220. table[class=body] h1 {
  221. font-size: 28px !important;
  222. margin-bottom: 10px !important;
  223. }
  224. table[class=body] p,
  225. table[class=body] ul,
  226. table[class=body] ol,
  227. table[class=body] td,
  228. table[class=body] span,
  229. table[class=body] a {
  230. font-size: 16px !important;
  231. }
  232. table[class=body] .wrapper,
  233. table[class=body] .article {
  234. padding: 10px !important;
  235. }
  236. table[class=body] .content {
  237. padding: 0 !important;
  238. }
  239. table[class=body] .container {
  240. padding: 0 !important;
  241. width: 100% !important;
  242. }
  243. table[class=body] .main {
  244. border-left-width: 0 !important;
  245. border-radius: 0 !important;
  246. border-right-width: 0 !important;
  247. }
  248. table[class=body] .btn table {
  249. width: 100% !important;
  250. }
  251. table[class=body] .btn a {
  252. width: 100% !important;
  253. }
  254. table[class=body] .img-responsive {
  255. height: auto !important;
  256. max-width: 100% !important;
  257. width: auto !important;
  258. }
  259. }
  260. /* -------------------------------------
  261. PRESERVE THESE STYLES IN THE HEAD
  262. ------------------------------------- */
  263. @media all {
  264. .ExternalClass {
  265. width: 100%;
  266. }
  267. .ExternalClass,
  268. .ExternalClass p,
  269. .ExternalClass span,
  270. .ExternalClass font,
  271. .ExternalClass td,
  272. .ExternalClass div {
  273. line-height: 100%;
  274. }
  275. .apple-link a {
  276. color: inherit !important;
  277. font-family: inherit !important;
  278. font-size: inherit !important;
  279. font-weight: inherit !important;
  280. line-height: inherit !important;
  281. text-decoration: none !important;
  282. }
  283. .btn-primary table td:hover {
  284. background-color: #34495e !important;
  285. }
  286. .btn-primary a:hover {
  287. background-color: #34495e !important;
  288. border-color: #34495e !important;
  289. }
  290. }
  291. </style>
  292. </head>
  293. <body class="">
  294. <span class="preheader">Notificación Robot Descarga Documentos Fiscales CENACE</span>
  295. <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
  296. <tr>
  297. <td>&nbsp;</td>
  298. <td class="container">
  299. <div class="content">
  300. <!-- START CENTERED WHITE CONTAINER -->
  301. <table role="presentation" class="main">
  302. <!-- START MAIN CONTENT AREA -->
  303. <tr>
  304. <td class="wrapper">
  305. <table role="presentation" border="0" cellpadding="0" cellspacing="0">
  306. <tr>
  307. <td>
  308. <p align="right">${fecha}</p>
  309. <p>La descarga de los archivos de Documentos Fiscales del Sistema de Información de Mercado del CENACE se realizó con el siguiente estado</p>
  310. <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="btn btn-primary">
  311. <tbody>
  312. <tr>
  313. <td align="center">
  314. <table role="presentation" border="0" cellpadding="0" cellspacing="0">
  315. <tbody>
  316. <tr>
  317. <td> <a class="btn-primary">${estado}</a> </td>
  318. </tr>
  319. </tbody>
  320. </table>
  321. </td>
  322. </tr>
  323. </tbody>
  324. </table>
  325. <p>Puede ver los Documentos Fiscales en el siguiente enlace:</p>
  326. <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="btn btn-primary">
  327. <tbody>
  328. <tr>
  329. <td align="center">
  330. <table role="presentation" border="0" cellpadding="0" cellspacing="0">
  331. <tbody>
  332. <tr>
  333. <td> <a class="btn-primary">http://ecd.metco.com</a> </td>
  334. </tr>
  335. </tbody>
  336. </table>
  337. </td>
  338. </tr>
  339. </tbody>
  340. </table>
  341. </td>
  342. </tr>
  343. </table>
  344. </td>
  345. </tr>
  346. <!-- END MAIN CONTENT AREA -->
  347. </table>
  348. <!-- END CENTERED WHITE CONTAINER -->
  349. <!-- START FOOTER -->
  350. <div class="footer">
  351. <table role="presentation" border="0" cellpadding="0" cellspacing="0">
  352. <tr>
  353. <td class="content-block">
  354. <span class="apple-link">Mercados Eléctricos de Centroamérica</span>
  355. </td>
  356. </tr>
  357. <tr>
  358. <td class="content-block powered-by">
  359. Powered by Mercados BI Team
  360. </td>
  361. </tr>
  362. </table>
  363. </div>
  364. <!-- END FOOTER -->
  365. </div>
  366. </td>
  367. <td>&nbsp;</td>
  368. </tr>
  369. </table>
  370. </body>
  371. </html>