email.php 59 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223
  1. <?php
  2. switch ($extra) {
  3. case 'invite':
  4. $button = '
  5. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
  6. <tbody class="mcnButtonBlockOuter">
  7. <tr>
  8. <td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
  9. <table border="0" cellpadding="0" cellspacing="0" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 10px;background-color: #AD80FD;">
  10. <tbody>
  11. <tr>
  12. <td align="center" valign="middle" class="mcnButtonContent" style="font-family: Helvetica; font-size: 18px; padding: 18px;">
  13. <a class="mcnButton " title="Button Text" href="'.getServerPath().'?inviteCode='.$email['inviteCode'].'" target="_self" style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">Use Invite Code</a>
  14. </td>
  15. </tr>
  16. </tbody>
  17. </table>
  18. </td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. ';
  23. break;
  24. case 'reset':
  25. $button = '
  26. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
  27. <tbody class="mcnButtonBlockOuter">
  28. <tr>
  29. <td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
  30. <table border="0" cellpadding="0" cellspacing="0" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 10px;background-color: #AD80FD;">
  31. <tbody>
  32. <tr>
  33. <td align="center" valign="middle" class="mcnButtonContent" style="font-family: Helvetica; font-size: 18px; padding: 18px;">
  34. <a class="mcnButton " title="Reset Password" href="'.getServerPath().'" target="_self" style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">Goto My Site</a>
  35. </td>
  36. </tr>
  37. </tbody>
  38. </table>
  39. </td>
  40. </tr>
  41. </tbody>
  42. </table>
  43. ';
  44. break;
  45. default:
  46. $button = null;
  47. break;
  48. }
  49. $info = '
  50. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnBoxedTextBlock" style="min-width:100%;">
  51. <!--[if gte mso 9]>
  52. <table align="center" border="0" cellspacing="0" cellpadding="0" width="100%">
  53. <![endif]-->
  54. <tbody class="mcnBoxedTextBlockOuter">
  55. <tr>
  56. <td valign="top" class="mcnBoxedTextBlockInner">
  57. <!--[if gte mso 9]>
  58. <td align="center" valign="top" ">
  59. <![endif]-->
  60. <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;" class="mcnBoxedTextContentContainer">
  61. <tbody>
  62. <tr>
  63. <td style="padding-top:9px; padding-left:18px; padding-bottom:9px; padding-right:18px;">
  64. <table border="0" cellspacing="0" class="mcnTextContentContainer" width="100%" style="min-width: 100% !important;background-color: #F7F7F7;border: 1px none;">
  65. <tbody>
  66. <tr>
  67. <td valign="top" class="mcnTextContent" style="padding: 18px;">
  68. <h3 style="text-align:center;">'.getServerPath().'</h3>
  69. <p><b>Email Sent at:</b> '.date("Y-m-d h:i").'</p>
  70. </td>
  71. </tr>
  72. </tbody>
  73. </table>
  74. </td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. <!--[if gte mso 9]>
  79. </td>
  80. <![endif]-->
  81. <!--[if gte mso 9]>
  82. </tr>
  83. </table>
  84. <![endif]-->
  85. </td>
  86. </tr>
  87. </tbody>
  88. </table>
  89. ';
  90. $email = '
  91. <!doctype html>
  92. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
  93. <head>
  94. <!-- NAME: EDUCATE -->
  95. <!--[if gte mso 15]>
  96. <xml>
  97. <o:OfficeDocumentSettings>
  98. <o:AllowPNG/>
  99. <o:PixelsPerInch>96</o:PixelsPerInch>
  100. </o:OfficeDocumentSettings>
  101. </xml>
  102. <![endif]-->
  103. <meta charset="UTF-8">
  104. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  105. <meta name="viewport" content="width=device-width, initial-scale=1">
  106. <title>*EMAIL*</title>
  107. <style type="text/css">
  108. p {
  109. margin: 10px 0;
  110. padding: 0;
  111. }
  112. table {
  113. border-collapse: collapse;
  114. }
  115. h1,
  116. h2,
  117. h3,
  118. h4,
  119. h5,
  120. h6 {
  121. display: block;
  122. margin: 0;
  123. padding: 0;
  124. }
  125. img,
  126. a img {
  127. border: 0;
  128. height: auto;
  129. outline: none;
  130. text-decoration: none;
  131. }
  132. body,
  133. #bodyTable,
  134. #bodyCell {
  135. height: 100%;
  136. margin: 0;
  137. padding: 0;
  138. width: 100%;
  139. }
  140. .mcnPreviewText {
  141. display: none !important;
  142. }
  143. #outlook a {
  144. padding: 0;
  145. }
  146. img {
  147. -ms-interpolation-mode: bicubic;
  148. }
  149. table {
  150. mso-table-lspace: 0pt;
  151. mso-table-rspace: 0pt;
  152. }
  153. .ReadMsgBody {
  154. width: 100%;
  155. }
  156. .ExternalClass {
  157. width: 100%;
  158. }
  159. p,
  160. a,
  161. li,
  162. td,
  163. blockquote {
  164. mso-line-height-rule: exactly;
  165. }
  166. a[href^=tel],
  167. a[href^=sms] {
  168. color: inherit;
  169. cursor: default;
  170. text-decoration: none;
  171. }
  172. p,
  173. a,
  174. li,
  175. td,
  176. body,
  177. table,
  178. blockquote {
  179. -ms-text-size-adjust: 100%;
  180. -webkit-text-size-adjust: 100%;
  181. }
  182. .ExternalClass,
  183. .ExternalClass p,
  184. .ExternalClass td,
  185. .ExternalClass div,
  186. .ExternalClass span,
  187. .ExternalClass font {
  188. line-height: 100%;
  189. }
  190. a[x-apple-data-detectors] {
  191. color: inherit !important;
  192. text-decoration: none !important;
  193. font-size: inherit !important;
  194. font-family: inherit !important;
  195. font-weight: inherit !important;
  196. line-height: inherit !important;
  197. }
  198. .templateContainer {
  199. max-width: 600px !important;
  200. }
  201. a.mcnButton {
  202. display: block;
  203. }
  204. .mcnImage {
  205. vertical-align: bottom;
  206. }
  207. .mcnTextContent {
  208. word-break: break-word;
  209. }
  210. .mcnTextContent img {
  211. height: auto !important;
  212. }
  213. .mcnDividerBlock {
  214. table-layout: fixed !important;
  215. }
  216. /*
  217. @tab Page
  218. @section Heading 1
  219. @style heading 1
  220. */
  221. h1 {
  222. /*@editable*/
  223. color: #222222;
  224. /*@editable*/
  225. font-family: Helvetica;
  226. /*@editable*/
  227. font-size: 40px;
  228. /*@editable*/
  229. font-style: normal;
  230. /*@editable*/
  231. font-weight: bold;
  232. /*@editable*/
  233. line-height: 150%;
  234. /*@editable*/
  235. letter-spacing: normal;
  236. /*@editable*/
  237. text-align: left;
  238. }
  239. /*
  240. @tab Page
  241. @section Heading 2
  242. @style heading 2
  243. */
  244. h2 {
  245. /*@editable*/
  246. color: #222222;
  247. /*@editable*/
  248. font-family: Helvetica;
  249. /*@editable*/
  250. font-size: 28px;
  251. /*@editable*/
  252. font-style: normal;
  253. /*@editable*/
  254. font-weight: bold;
  255. /*@editable*/
  256. line-height: 150%;
  257. /*@editable*/
  258. letter-spacing: normal;
  259. /*@editable*/
  260. text-align: left;
  261. }
  262. /*
  263. @tab Page
  264. @section Heading 3
  265. @style heading 3
  266. */
  267. h3 {
  268. /*@editable*/
  269. color: #444444;
  270. /*@editable*/
  271. font-family: Helvetica;
  272. /*@editable*/
  273. font-size: 22px;
  274. /*@editable*/
  275. font-style: normal;
  276. /*@editable*/
  277. font-weight: bold;
  278. /*@editable*/
  279. line-height: 150%;
  280. /*@editable*/
  281. letter-spacing: normal;
  282. /*@editable*/
  283. text-align: left;
  284. }
  285. /*
  286. @tab Page
  287. @section Heading 4
  288. @style heading 4
  289. */
  290. h4 {
  291. /*@editable*/
  292. color: #999999;
  293. /*@editable*/
  294. font-family: Georgia;
  295. /*@editable*/
  296. font-size: 20px;
  297. /*@editable*/
  298. font-style: italic;
  299. /*@editable*/
  300. font-weight: normal;
  301. /*@editable*/
  302. line-height: 125%;
  303. /*@editable*/
  304. letter-spacing: normal;
  305. /*@editable*/
  306. text-align: left;
  307. }
  308. /*
  309. @tab Header
  310. @section Header Container Style
  311. */
  312. #templateHeader {
  313. /*@editable*/
  314. background-color: #333333;
  315. /*@editable*/
  316. background-image: none;
  317. /*@editable*/
  318. background-repeat: no-repeat;
  319. /*@editable*/
  320. background-position: center;
  321. /*@editable*/
  322. background-size: cover;
  323. /*@editable*/
  324. border-top: 0;
  325. /*@editable*/
  326. border-bottom: 0;
  327. /*@editable*/
  328. padding-top: 10px;
  329. /*@editable*/
  330. padding-bottom: 10px;
  331. }
  332. /*
  333. @tab Header
  334. @section Header Interior Style
  335. */
  336. .headerContainer {
  337. /*@editable*/
  338. background-color: #transparent;
  339. /*@editable*/
  340. background-image: none;
  341. /*@editable*/
  342. background-repeat: no-repeat;
  343. /*@editable*/
  344. background-position: center;
  345. /*@editable*/
  346. background-size: cover;
  347. /*@editable*/
  348. border-top: 0;
  349. /*@editable*/
  350. border-bottom: 0;
  351. /*@editable*/
  352. padding-top: 0;
  353. /*@editable*/
  354. padding-bottom: 0;
  355. }
  356. /*
  357. @tab Header
  358. @section Header Text
  359. */
  360. .headerContainer .mcnTextContent,
  361. .headerContainer .mcnTextContent p {
  362. /*@editable*/
  363. color: #808080;
  364. /*@editable*/
  365. font-family: Helvetica;
  366. /*@editable*/
  367. font-size: 16px;
  368. /*@editable*/
  369. line-height: 150%;
  370. /*@editable*/
  371. text-align: left;
  372. }
  373. /*
  374. @tab Header
  375. @section Header Link
  376. */
  377. .headerContainer .mcnTextContent a,
  378. .headerContainer .mcnTextContent p a {
  379. /*@editable*/
  380. color: #00ADD8;
  381. /*@editable*/
  382. font-weight: normal;
  383. /*@editable*/
  384. text-decoration: underline;
  385. }
  386. /*
  387. @tab Body
  388. @section Body Container Style
  389. */
  390. #templateBody {
  391. /*@editable*/
  392. background-color: #ffffff;
  393. /*@editable*/
  394. background-image: none;
  395. /*@editable*/
  396. background-repeat: no-repeat;
  397. /*@editable*/
  398. background-position: center;
  399. /*@editable*/
  400. background-size: cover;
  401. /*@editable*/
  402. border-top: 0;
  403. /*@editable*/
  404. border-bottom: 0;
  405. /*@editable*/
  406. padding-top: 27px;
  407. /*@editable*/
  408. padding-bottom: 63px;
  409. }
  410. /*
  411. @tab Body
  412. @section Body Interior Style
  413. */
  414. .bodyContainer {
  415. /*@editable*/
  416. background-color: #transparent;
  417. /*@editable*/
  418. background-image: none;
  419. /*@editable*/
  420. background-repeat: no-repeat;
  421. /*@editable*/
  422. background-position: center;
  423. /*@editable*/
  424. background-size: cover;
  425. /*@editable*/
  426. border-top: 0;
  427. /*@editable*/
  428. border-bottom: 0;
  429. /*@editable*/
  430. padding-top: 0;
  431. /*@editable*/
  432. padding-bottom: 0;
  433. }
  434. /*
  435. @tab Body
  436. @section Body Text
  437. */
  438. .bodyContainer .mcnTextContent,
  439. .bodyContainer .mcnTextContent p {
  440. /*@editable*/
  441. color: #808080;
  442. /*@editable*/
  443. font-family: Helvetica;
  444. /*@editable*/
  445. font-size: 16px;
  446. /*@editable*/
  447. line-height: 150%;
  448. /*@editable*/
  449. text-align: left;
  450. }
  451. /*
  452. @tab Body
  453. @section Body Link
  454. */
  455. .bodyContainer .mcnTextContent a,
  456. .bodyContainer .mcnTextContent p a {
  457. /*@editable*/
  458. color: #00ADD8;
  459. /*@editable*/
  460. font-weight: normal;
  461. /*@editable*/
  462. text-decoration: underline;
  463. }
  464. /*
  465. @tab Footer
  466. @section Footer Style
  467. */
  468. #templateFooter {
  469. /*@editable*/
  470. background-color: #333333;
  471. /*@editable*/
  472. background-image: none;
  473. /*@editable*/
  474. background-repeat: no-repeat;
  475. /*@editable*/
  476. background-position: center;
  477. /*@editable*/
  478. background-size: cover;
  479. /*@editable*/
  480. border-top: 0;
  481. /*@editable*/
  482. border-bottom: 0;
  483. /*@editable*/
  484. padding-top: 0px;
  485. /*@editable*/
  486. padding-bottom: 0px;
  487. }
  488. /*
  489. @tab Footer
  490. @section Footer Interior Style
  491. */
  492. .footerContainer {
  493. /*@editable*/
  494. background-color: #transparent;
  495. /*@editable*/
  496. background-image: none;
  497. /*@editable*/
  498. background-repeat: no-repeat;
  499. /*@editable*/
  500. background-position: center;
  501. /*@editable*/
  502. background-size: cover;
  503. /*@editable*/
  504. border-top: 0;
  505. /*@editable*/
  506. border-bottom: 0;
  507. /*@editable*/
  508. padding-top: 0;
  509. /*@editable*/
  510. padding-bottom: 0;
  511. }
  512. /*
  513. @tab Footer
  514. @section Footer Text
  515. */
  516. .footerContainer .mcnTextContent,
  517. .footerContainer .mcnTextContent p {
  518. /*@editable*/
  519. color: #FFFFFF;
  520. /*@editable*/
  521. font-family: Helvetica;
  522. /*@editable*/
  523. font-size: 12px;
  524. /*@editable*/
  525. line-height: 150%;
  526. /*@editable*/
  527. text-align: center;
  528. }
  529. /*
  530. @tab Footer
  531. @section Footer Link
  532. */
  533. .footerContainer .mcnTextContent a,
  534. .footerContainer .mcnTextContent p a {
  535. /*@editable*/
  536. color: #FFFFFF;
  537. /*@editable*/
  538. font-weight: normal;
  539. /*@editable*/
  540. text-decoration: underline;
  541. }
  542. @media only screen and (min-width:768px) {
  543. .templateContainer {
  544. width: 600px !important;
  545. }
  546. }
  547. @media only screen and (max-width: 480px) {
  548. body,
  549. table,
  550. td,
  551. p,
  552. a,
  553. li,
  554. blockquote {
  555. -webkit-text-size-adjust: none !important;
  556. }
  557. }
  558. @media only screen and (max-width: 480px) {
  559. body {
  560. width: 100% !important;
  561. min-width: 100% !important;
  562. }
  563. }
  564. @media only screen and (max-width: 480px) {
  565. .mcnImage {
  566. width: 100% !important;
  567. }
  568. }
  569. @media only screen and (max-width: 480px) {
  570. .mcnCartContainer,
  571. .mcnCaptionTopContent,
  572. .mcnRecContentContainer,
  573. .mcnCaptionBottomContent,
  574. .mcnTextContentContainer,
  575. .mcnBoxedTextContentContainer,
  576. .mcnImageGroupContentContainer,
  577. .mcnCaptionLeftTextContentContainer,
  578. .mcnCaptionRightTextContentContainer,
  579. .mcnCaptionLeftImageContentContainer,
  580. .mcnCaptionRightImageContentContainer,
  581. .mcnImageCardLeftTextContentContainer,
  582. .mcnImageCardRightTextContentContainer {
  583. max-width: 100% !important;
  584. width: 100% !important;
  585. }
  586. }
  587. @media only screen and (max-width: 480px) {
  588. .mcnBoxedTextContentContainer {
  589. min-width: 100% !important;
  590. }
  591. }
  592. @media only screen and (max-width: 480px) {
  593. .mcnImageGroupContent {
  594. padding: 9px !important;
  595. }
  596. }
  597. @media only screen and (max-width: 480px) {
  598. .mcnCaptionLeftContentOuter .mcnTextContent,
  599. .mcnCaptionRightContentOuter .mcnTextContent {
  600. padding-top: 9px !important;
  601. }
  602. }
  603. @media only screen and (max-width: 480px) {
  604. .mcnImageCardTopImageContent,
  605. .mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent {
  606. padding-top: 18px !important;
  607. }
  608. }
  609. @media only screen and (max-width: 480px) {
  610. .mcnImageCardBottomImageContent {
  611. padding-bottom: 9px !important;
  612. }
  613. }
  614. @media only screen and (max-width: 480px) {
  615. .mcnImageGroupBlockInner {
  616. padding-top: 0 !important;
  617. padding-bottom: 0 !important;
  618. }
  619. }
  620. @media only screen and (max-width: 480px) {
  621. .mcnImageGroupBlockOuter {
  622. padding-top: 9px !important;
  623. padding-bottom: 9px !important;
  624. }
  625. }
  626. @media only screen and (max-width: 480px) {
  627. .mcnTextContent,
  628. .mcnBoxedTextContentColumn {
  629. padding-right: 18px !important;
  630. padding-left: 18px !important;
  631. }
  632. }
  633. @media only screen and (max-width: 480px) {
  634. .mcnImageCardLeftImageContent,
  635. .mcnImageCardRightImageContent {
  636. padding-right: 18px !important;
  637. padding-bottom: 0 !important;
  638. padding-left: 18px !important;
  639. }
  640. }
  641. @media only screen and (max-width: 480px) {
  642. .mcpreview-image-uploader {
  643. display: none !important;
  644. width: 100% !important;
  645. }
  646. }
  647. @media only screen and (max-width: 480px) {
  648. /*
  649. @tab Mobile Styles
  650. @section Heading 1
  651. @tip Make the first-level headings larger in size for better readability on small screens.
  652. */
  653. h1 {
  654. /*@editable*/
  655. font-size: 30px !important;
  656. /*@editable*/
  657. line-height: 125% !important;
  658. }
  659. }
  660. @media only screen and (max-width: 480px) {
  661. /*
  662. @tab Mobile Styles
  663. @section Heading 2
  664. @tip Make the second-level headings larger in size for better readability on small screens.
  665. */
  666. h2 {
  667. /*@editable*/
  668. font-size: 26px !important;
  669. /*@editable*/
  670. line-height: 125% !important;
  671. }
  672. }
  673. @media only screen and (max-width: 480px) {
  674. /*
  675. @tab Mobile Styles
  676. @section Heading 3
  677. @tip Make the third-level headings larger in size for better readability on small screens.
  678. */
  679. h3 {
  680. /*@editable*/
  681. font-size: 20px !important;
  682. /*@editable*/
  683. line-height: 150% !important;
  684. }
  685. }
  686. @media only screen and (max-width: 480px) {
  687. /*
  688. @tab Mobile Styles
  689. @section Heading 4
  690. @tip Make the fourth-level headings larger in size for better readability on small screens.
  691. */
  692. h4 {
  693. /*@editable*/
  694. font-size: 18px !important;
  695. /*@editable*/
  696. line-height: 150% !important;
  697. }
  698. }
  699. @media only screen and (max-width: 480px) {
  700. /*
  701. @tab Mobile Styles
  702. @section Boxed Text
  703. @tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
  704. */
  705. .mcnBoxedTextContentContainer .mcnTextContent,
  706. .mcnBoxedTextContentContainer .mcnTextContent p {
  707. /*@editable*/
  708. font-size: 14px !important;
  709. /*@editable*/
  710. line-height: 150% !important;
  711. }
  712. }
  713. @media only screen and (max-width: 480px) {
  714. /*
  715. @tab Mobile Styles
  716. @section Header Text
  717. @tip Make the header text larger in size for better readability on small screens.
  718. */
  719. .headerContainer .mcnTextContent,
  720. .headerContainer .mcnTextContent p {
  721. /*@editable*/
  722. font-size: 16px !important;
  723. /*@editable*/
  724. line-height: 150% !important;
  725. }
  726. }
  727. @media only screen and (max-width: 480px) {
  728. /*
  729. @tab Mobile Styles
  730. @section Body Text
  731. @tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
  732. */
  733. .bodyContainer .mcnTextContent,
  734. .bodyContainer .mcnTextContent p {
  735. /*@editable*/
  736. font-size: 16px !important;
  737. /*@editable*/
  738. line-height: 150% !important;
  739. }
  740. }
  741. @media only screen and (max-width: 480px) {
  742. /*
  743. @tab Mobile Styles
  744. @section Footer Text
  745. @tip Make the footer content text larger in size for better readability on small screens.
  746. */
  747. .footerContainer .mcnTextContent,
  748. .footerContainer .mcnTextContent p {
  749. /*@editable*/
  750. font-size: 14px !important;
  751. /*@editable*/
  752. line-height: 150% !important;
  753. }
  754. }
  755. </style>
  756. </head>
  757. <body>
  758. <!--*|IF:MC_PREVIEW_TEXT|*-->
  759. <!--[if !gte mso 9]><!----><span class="mcnPreviewText" style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;">*|MC_PREVIEW_TEXT|*</span>
  760. <!--<![endif]-->
  761. <!--*|END:IF|*-->
  762. <center>
  763. <table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
  764. <tr>
  765. <td align="center" valign="top" id="bodyCell">
  766. <!-- BEGIN TEMPLATE // -->
  767. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  768. <tr>
  769. <td align="center" valign="top" id="templateHeader" data-template-container>
  770. <!--[if (gte mso 9)|(IE)]>
  771. <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
  772. <tr>
  773. <td align="center" valign="top" width="600" style="width:600px;">
  774. <![endif]-->
  775. <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
  776. <tr>
  777. <td valign="top" class="headerContainer">
  778. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
  779. <tbody class="mcnImageBlockOuter">
  780. <tr>
  781. <td valign="top" style="padding:9px" class="mcnImageBlockInner">
  782. <table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
  783. <tbody>
  784. <tr>
  785. <td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
  786. <img align="center" alt="" src="'.emailTempateLogo.'" width="564" style="max-width:700px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
  787. </td>
  788. </tr>
  789. </tbody>
  790. </table>
  791. </td>
  792. </tr>
  793. </tbody>
  794. </table>
  795. </td>
  796. </tr>
  797. </table>
  798. <!--[if (gte mso 9)|(IE)]>
  799. </td>
  800. </tr>
  801. </table>
  802. <![endif]-->
  803. </td>
  804. </tr>
  805. <tr>
  806. <td align="center" valign="top" id="templateBody" data-template-container>
  807. <!--[if (gte mso 9)|(IE)]>
  808. <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
  809. <tr>
  810. <td align="center" valign="top" width="600" style="width:600px;">
  811. <![endif]-->
  812. <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
  813. <tr>
  814. <td valign="top" class="bodyContainer">
  815. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
  816. <tbody class="mcnTextBlockOuter">
  817. <tr>
  818. <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
  819. <!--[if mso]>
  820. <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
  821. <tr>
  822. <![endif]-->
  823. <!--[if mso]>
  824. <td valign="top" width="600" style="width:600px;">
  825. <![endif]-->
  826. <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
  827. <tbody>
  828. <tr>
  829. <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
  830. '.$body.'
  831. </td>
  832. </tr>
  833. </tbody>
  834. </table>
  835. <!--[if mso]>
  836. </td>
  837. <![endif]-->
  838. <!--[if mso]>
  839. </tr>
  840. </table>
  841. <![endif]-->
  842. </td>
  843. </tr>
  844. </tbody>
  845. </table>
  846. '.$button.$info.'
  847. </td>
  848. </tr>
  849. </table>
  850. <!--[if (gte mso 9)|(IE)]>
  851. </td>
  852. </tr>
  853. </table>
  854. <![endif]-->
  855. </td>
  856. </tr>
  857. <tr>
  858. <td align="center" valign="top" id="templateFooter" data-template-container>
  859. <!--[if (gte mso 9)|(IE)]>
  860. <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
  861. <tr>
  862. <td align="center" valign="top" width="600" style="width:600px;">
  863. <![endif]-->
  864. <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
  865. <tr>
  866. <td valign="top" class="footerContainer">
  867. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowBlock" style="min-width:100%;">
  868. <tbody class="mcnFollowBlockOuter">
  869. <tr>
  870. <td align="center" valign="top" style="padding:9px" class="mcnFollowBlockInner">
  871. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentContainer" style="min-width:100%;">
  872. <tbody>
  873. <tr>
  874. <td align="center" style="padding-left:9px;padding-right:9px;">
  875. <table border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%; border: 1px none;" class="mcnFollowContent">
  876. <tbody>
  877. <tr>
  878. <td align="center" valign="top" style="padding-top:9px; padding-right:9px; padding-left:9px;">
  879. <table align="center" border="0" cellpadding="0" cellspacing="0">
  880. <tbody>
  881. <tr>
  882. <td align="center" valign="top">
  883. <!--[if mso]>
  884. <table align="center" border="0" cellspacing="0" cellpadding="0">
  885. <tr>
  886. <![endif]-->
  887. <!--[if mso]>
  888. <td align="center" valign="top">
  889. <![endif]-->
  890. <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
  891. <tbody>
  892. <tr>
  893. <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
  894. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
  895. <tbody>
  896. <tr>
  897. <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
  898. <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
  899. <tbody>
  900. <tr>
  901. <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
  902. <a href="https://github.com/causefx/organizr" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-github-48.png" style="display:block;" height="24" width="24" class=""></a>
  903. </td>
  904. <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
  905. <a href="https://github.com/causefx/organizr" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">GitHub</a>
  906. </td>
  907. </tr>
  908. </tbody>
  909. </table>
  910. </td>
  911. </tr>
  912. </tbody>
  913. </table>
  914. </td>
  915. </tr>
  916. </tbody>
  917. </table>
  918. <!--[if mso]>
  919. </td>
  920. <![endif]-->
  921. <!--[if mso]>
  922. <td align="center" valign="top">
  923. <![endif]-->
  924. <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
  925. <tbody>
  926. <tr>
  927. <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
  928. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
  929. <tbody>
  930. <tr>
  931. <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
  932. <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
  933. <tbody>
  934. <tr>
  935. <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
  936. <a href="https://www.reddit.com/r/organizr" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-reddit-48.png" style="display:block;" height="24" width="24" class=""></a>
  937. </td>
  938. <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
  939. <a href="https://www.reddit.com/r/organizr" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">Reddit</a>
  940. </td>
  941. </tr>
  942. </tbody>
  943. </table>
  944. </td>
  945. </tr>
  946. </tbody>
  947. </table>
  948. </td>
  949. </tr>
  950. </tbody>
  951. </table>
  952. <!--[if mso]>
  953. </td>
  954. <![endif]-->
  955. <!--[if mso]>
  956. <td align="center" valign="top">
  957. <![endif]-->
  958. <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
  959. <tbody>
  960. <tr>
  961. <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
  962. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
  963. <tbody>
  964. <tr>
  965. <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
  966. <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
  967. <tbody>
  968. <tr>
  969. <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
  970. <a href="https://organizr.us" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-link-48.png" style="display:block;" height="24" width="24" class=""></a>
  971. </td>
  972. <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
  973. <a href="https://organizr.us" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">Website</a>
  974. </td>
  975. </tr>
  976. </tbody>
  977. </table>
  978. </td>
  979. </tr>
  980. </tbody>
  981. </table>
  982. </td>
  983. </tr>
  984. </tbody>
  985. </table>
  986. <!--[if mso]>
  987. </td>
  988. <![endif]-->
  989. <!--[if mso]>
  990. <td align="center" valign="top">
  991. <![endif]-->
  992. <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
  993. <tbody>
  994. <tr>
  995. <td valign="top" style="padding-right:0; padding-bottom:9px;" class="mcnFollowContentItemContainer">
  996. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
  997. <tbody>
  998. <tr>
  999. <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
  1000. <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
  1001. <tbody>
  1002. <tr>
  1003. <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
  1004. <a href="https://discord.gg/TrNtY7N" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-link-48.png" style="display:block;" height="24" width="24" class=""></a>
  1005. </td>
  1006. <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
  1007. <a href="https://discord.gg/TrNtY7N" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">Discord</a>
  1008. </td>
  1009. </tr>
  1010. </tbody>
  1011. </table>
  1012. </td>
  1013. </tr>
  1014. </tbody>
  1015. </table>
  1016. </td>
  1017. </tr>
  1018. </tbody>
  1019. </table>
  1020. <!--[if mso]>
  1021. </td>
  1022. <![endif]-->
  1023. <!--[if mso]>
  1024. </tr>
  1025. </table>
  1026. <![endif]-->
  1027. </td>
  1028. </tr>
  1029. </tbody>
  1030. </table>
  1031. </td>
  1032. </tr>
  1033. </tbody>
  1034. </table>
  1035. </td>
  1036. </tr>
  1037. </tbody>
  1038. </table>
  1039. </td>
  1040. </tr>
  1041. </tbody>
  1042. </table>
  1043. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
  1044. <tbody class="mcnDividerBlockOuter">
  1045. <tr>
  1046. <td class="mcnDividerBlockInner" style="min-width: 100%; padding: 0px 18px;">
  1047. <table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #505050;">
  1048. <tbody>
  1049. <tr>
  1050. <td>
  1051. <span></span>
  1052. </td>
  1053. </tr>
  1054. </tbody>
  1055. </table>
  1056. <!--
  1057. <td class="mcnDividerBlockInner" style="padding: 18px;">
  1058. <hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
  1059. -->
  1060. </td>
  1061. </tr>
  1062. </tbody>
  1063. </table>
  1064. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
  1065. <tbody class="mcnTextBlockOuter">
  1066. <tr>
  1067. <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
  1068. <!--[if mso]>
  1069. <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
  1070. <tr>
  1071. <![endif]-->
  1072. <!--[if mso]>
  1073. <td valign="top" width="600" style="width:600px;">
  1074. <![endif]-->
  1075. <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
  1076. <tbody>
  1077. <tr>
  1078. <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
  1079. <em>Powered By: Organizr</em>
  1080. </td>
  1081. </tr>
  1082. </tbody>
  1083. </table>
  1084. <!--[if mso]>
  1085. </td>
  1086. <![endif]-->
  1087. <!--[if mso]>
  1088. </tr>
  1089. </table>
  1090. <![endif]-->
  1091. </td>
  1092. </tr>
  1093. </tbody>
  1094. </table>
  1095. </td>
  1096. </tr>
  1097. </table>
  1098. <!--[if (gte mso 9)|(IE)]>
  1099. </td>
  1100. </tr>
  1101. </table>
  1102. <![endif]-->
  1103. </td>
  1104. </tr>
  1105. </table>
  1106. <!-- // END TEMPLATE -->
  1107. </td>
  1108. </tr>
  1109. </table>
  1110. </center>
  1111. </body>
  1112. </html>
  1113. ';