| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218 |
- <?php
- switch ($extra) {
- case 'invite':
- $button = '
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
- <tbody class="mcnButtonBlockOuter">
- <tr>
- <td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
- <table border="0" cellpadding="0" cellspacing="0" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 10px;background-color: #AD80FD;">
- <tbody>
- <tr>
- <td align="center" valign="middle" class="mcnButtonContent" style="font-family: Helvetica; font-size: 18px; padding: 18px;">
- <a class="mcnButton " title="Button Text" href="' . $this->getServerPath(true) . '?invite=' . $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>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- ';
- break;
- case 'reset':
- $button = '
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
- <tbody class="mcnButtonBlockOuter">
- <tr>
- <td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
- <table border="0" cellpadding="0" cellspacing="0" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 10px;background-color: #AD80FD;">
- <tbody>
- <tr>
- <td align="center" valign="middle" class="mcnButtonContent" style="font-family: Helvetica; font-size: 18px; padding: 18px;">
- <a class="mcnButton " title="Reset Password" href="' . $this->getServerPath(true) . '" 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>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- ';
- break;
- default:
- $button = null;
- break;
- }
- $info = '
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnBoxedTextBlock" style="min-width:100%;">
- <!--[if gte mso 9]>
- <table align="center" border="0" cellspacing="0" cellpadding="0" width="100%">
- <![endif]-->
- <tbody class="mcnBoxedTextBlockOuter">
- <tr>
- <td valign="top" class="mcnBoxedTextBlockInner">
- <!--[if gte mso 9]>
- <td align="center" valign="top" ">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;" class="mcnBoxedTextContentContainer">
- <tbody>
- <tr>
- <td style="padding-top:9px; padding-left:18px; padding-bottom:9px; padding-right:18px;">
- <table border="0" cellspacing="0" class="mcnTextContentContainer" width="100%" style="min-width: 100% !important;background-color: #F7F7F7;border: 1px none;">
- <tbody>
- <tr>
- <td valign="top" class="mcnTextContent" style="padding: 18px;">
- <h3 style="text-align:center;">' . $this->getServerPath(true) . '</h3>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if gte mso 9]>
- </td>
- <![endif]-->
- <!--[if gte mso 9]>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- </tbody>
- </table>
- ';
- $email = '
- <!doctype html>
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
- <head>
- <!-- NAME: EDUCATE -->
- <!--[if gte mso 15]>
- <xml>
- <o:OfficeDocumentSettings>
- <o:AllowPNG/>
- <o:PixelsPerInch>96</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
- </xml>
- <![endif]-->
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>*EMAIL*</title>
- <style type="text/css">
- p {
- margin: 10px 0;
- padding: 0;
- }
- table {
- border-collapse: collapse;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- display: block;
- margin: 0;
- padding: 0;
- }
- img,
- a img {
- border: 0;
- height: auto;
- outline: none;
- text-decoration: none;
- }
- body,
- #bodyTable,
- #bodyCell {
- height: 100%;
- margin: 0;
- padding: 0;
- width: 100%;
- }
- .mcnPreviewText {
- display: none !important;
- }
- #outlook a {
- padding: 0;
- }
- img {
- -ms-interpolation-mode: bicubic;
- }
- table {
- mso-table-lspace: 0pt;
- mso-table-rspace: 0pt;
- }
- .ReadMsgBody {
- width: 100%;
- }
- .ExternalClass {
- width: 100%;
- }
- p,
- a,
- li,
- td,
- blockquote {
- mso-line-height-rule: exactly;
- }
- a[href^=tel],
- a[href^=sms] {
- color: inherit;
- cursor: default;
- text-decoration: none;
- }
- p,
- a,
- li,
- td,
- body,
- table,
- blockquote {
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- }
- .ExternalClass,
- .ExternalClass p,
- .ExternalClass td,
- .ExternalClass div,
- .ExternalClass span,
- .ExternalClass font {
- line-height: 100%;
- }
- a[x-apple-data-detectors] {
- color: inherit !important;
- text-decoration: none !important;
- font-size: inherit !important;
- font-family: inherit !important;
- font-weight: inherit !important;
- line-height: inherit !important;
- }
- .templateContainer {
- max-width: 600px !important;
- }
- a.mcnButton {
- display: block;
- }
- .mcnImage {
- vertical-align: bottom;
- }
- .mcnTextContent {
- word-break: break-word;
- }
- .mcnTextContent img {
- height: auto !important;
- }
- .mcnDividerBlock {
- table-layout: fixed !important;
- }
- /*
- @tab Page
- @section Heading 1
- @style heading 1
- */
- h1 {
- /*@editable*/
- color: #222222;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 40px;
- /*@editable*/
- font-style: normal;
- /*@editable*/
- font-weight: bold;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- letter-spacing: normal;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Page
- @section Heading 2
- @style heading 2
- */
- h2 {
- /*@editable*/
- color: #222222;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 28px;
- /*@editable*/
- font-style: normal;
- /*@editable*/
- font-weight: bold;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- letter-spacing: normal;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Page
- @section Heading 3
- @style heading 3
- */
- h3 {
- /*@editable*/
- color: #444444;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 22px;
- /*@editable*/
- font-style: normal;
- /*@editable*/
- font-weight: bold;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- letter-spacing: normal;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Page
- @section Heading 4
- @style heading 4
- */
- h4 {
- /*@editable*/
- color: #999999;
- /*@editable*/
- font-family: Georgia;
- /*@editable*/
- font-size: 20px;
- /*@editable*/
- font-style: italic;
- /*@editable*/
- font-weight: normal;
- /*@editable*/
- line-height: 125%;
- /*@editable*/
- letter-spacing: normal;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Header
- @section Header Container Style
- */
- #templateHeader {
- /*@editable*/
- background-color: #333333;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 10px;
- /*@editable*/
- padding-bottom: 10px;
- }
- /*
- @tab Header
- @section Header Interior Style
- */
- .headerContainer {
- /*@editable*/
- background-color: #transparent;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 0;
- /*@editable*/
- padding-bottom: 0;
- }
- /*
- @tab Header
- @section Header Text
- */
- .headerContainer .mcnTextContent,
- .headerContainer .mcnTextContent p {
- /*@editable*/
- color: #808080;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 16px;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Header
- @section Header Link
- */
- .headerContainer .mcnTextContent a,
- .headerContainer .mcnTextContent p a {
- /*@editable*/
- color: #00ADD8;
- /*@editable*/
- font-weight: normal;
- /*@editable*/
- text-decoration: underline;
- }
- /*
- @tab Body
- @section Body Container Style
- */
- #templateBody {
- /*@editable*/
- background-color: #ffffff;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 27px;
- /*@editable*/
- padding-bottom: 63px;
- }
- /*
- @tab Body
- @section Body Interior Style
- */
- .bodyContainer {
- /*@editable*/
- background-color: #transparent;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 0;
- /*@editable*/
- padding-bottom: 0;
- }
- /*
- @tab Body
- @section Body Text
- */
- .bodyContainer .mcnTextContent,
- .bodyContainer .mcnTextContent p {
- /*@editable*/
- color: #808080;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 16px;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- text-align: left;
- }
- /*
- @tab Body
- @section Body Link
- */
- .bodyContainer .mcnTextContent a,
- .bodyContainer .mcnTextContent p a {
- /*@editable*/
- color: #00ADD8;
- /*@editable*/
- font-weight: normal;
- /*@editable*/
- text-decoration: underline;
- }
- /*
- @tab Footer
- @section Footer Style
- */
- #templateFooter {
- /*@editable*/
- background-color: #333333;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 0px;
- /*@editable*/
- padding-bottom: 0px;
- }
- /*
- @tab Footer
- @section Footer Interior Style
- */
- .footerContainer {
- /*@editable*/
- background-color: #transparent;
- /*@editable*/
- background-image: none;
- /*@editable*/
- background-repeat: no-repeat;
- /*@editable*/
- background-position: center;
- /*@editable*/
- background-size: cover;
- /*@editable*/
- border-top: 0;
- /*@editable*/
- border-bottom: 0;
- /*@editable*/
- padding-top: 0;
- /*@editable*/
- padding-bottom: 0;
- }
- /*
- @tab Footer
- @section Footer Text
- */
- .footerContainer .mcnTextContent,
- .footerContainer .mcnTextContent p {
- /*@editable*/
- color: #FFFFFF;
- /*@editable*/
- font-family: Helvetica;
- /*@editable*/
- font-size: 12px;
- /*@editable*/
- line-height: 150%;
- /*@editable*/
- text-align: center;
- }
- /*
- @tab Footer
- @section Footer Link
- */
- .footerContainer .mcnTextContent a,
- .footerContainer .mcnTextContent p a {
- /*@editable*/
- color: #FFFFFF;
- /*@editable*/
- font-weight: normal;
- /*@editable*/
- text-decoration: underline;
- }
- @media only screen and (min-width:768px) {
- .templateContainer {
- width: 600px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- body,
- table,
- td,
- p,
- a,
- li,
- blockquote {
- -webkit-text-size-adjust: none !important;
- }
- }
- @media only screen and (max-width: 480px) {
- body {
- width: 100% !important;
- min-width: 100% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImage {
- width: 100% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnCartContainer,
- .mcnCaptionTopContent,
- .mcnRecContentContainer,
- .mcnCaptionBottomContent,
- .mcnTextContentContainer,
- .mcnBoxedTextContentContainer,
- .mcnImageGroupContentContainer,
- .mcnCaptionLeftTextContentContainer,
- .mcnCaptionRightTextContentContainer,
- .mcnCaptionLeftImageContentContainer,
- .mcnCaptionRightImageContentContainer,
- .mcnImageCardLeftTextContentContainer,
- .mcnImageCardRightTextContentContainer {
- max-width: 100% !important;
- width: 100% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnBoxedTextContentContainer {
- min-width: 100% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageGroupContent {
- padding: 9px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnCaptionLeftContentOuter .mcnTextContent,
- .mcnCaptionRightContentOuter .mcnTextContent {
- padding-top: 9px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageCardTopImageContent,
- .mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent {
- padding-top: 18px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageCardBottomImageContent {
- padding-bottom: 9px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageGroupBlockInner {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageGroupBlockOuter {
- padding-top: 9px !important;
- padding-bottom: 9px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnTextContent,
- .mcnBoxedTextContentColumn {
- padding-right: 18px !important;
- padding-left: 18px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcnImageCardLeftImageContent,
- .mcnImageCardRightImageContent {
- padding-right: 18px !important;
- padding-bottom: 0 !important;
- padding-left: 18px !important;
- }
- }
- @media only screen and (max-width: 480px) {
- .mcpreview-image-uploader {
- display: none !important;
- width: 100% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Heading 1
- @tip Make the first-level headings larger in size for better readability on small screens.
- */
- h1 {
- /*@editable*/
- font-size: 30px !important;
- /*@editable*/
- line-height: 125% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Heading 2
- @tip Make the second-level headings larger in size for better readability on small screens.
- */
- h2 {
- /*@editable*/
- font-size: 26px !important;
- /*@editable*/
- line-height: 125% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Heading 3
- @tip Make the third-level headings larger in size for better readability on small screens.
- */
- h3 {
- /*@editable*/
- font-size: 20px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Heading 4
- @tip Make the fourth-level headings larger in size for better readability on small screens.
- */
- h4 {
- /*@editable*/
- font-size: 18px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Boxed Text
- @tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
- */
- .mcnBoxedTextContentContainer .mcnTextContent,
- .mcnBoxedTextContentContainer .mcnTextContent p {
- /*@editable*/
- font-size: 14px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Header Text
- @tip Make the header text larger in size for better readability on small screens.
- */
- .headerContainer .mcnTextContent,
- .headerContainer .mcnTextContent p {
- /*@editable*/
- font-size: 16px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Body Text
- @tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
- */
- .bodyContainer .mcnTextContent,
- .bodyContainer .mcnTextContent p {
- /*@editable*/
- font-size: 16px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- @media only screen and (max-width: 480px) {
- /*
- @tab Mobile Styles
- @section Footer Text
- @tip Make the footer content text larger in size for better readability on small screens.
- */
- .footerContainer .mcnTextContent,
- .footerContainer .mcnTextContent p {
- /*@editable*/
- font-size: 14px !important;
- /*@editable*/
- line-height: 150% !important;
- }
- }
- </style>
- </head>
- <body>
- <!--*|IF:MC_PREVIEW_TEXT|*-->
- <!--[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;"></span>
- <!--<![endif]-->
- <!--*|END:IF|*-->
- <center>
- <table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
- <tr>
- <td align="center" valign="top" id="bodyCell">
- <!-- BEGIN TEMPLATE // -->
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td align="center" valign="top" id="templateHeader" data-template-container>
- <!--[if (gte mso 9)|(IE)]>
- <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
- <tr>
- <td align="center" valign="top" width="600" style="width:600px;">
- <![endif]-->
- <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
- <tr>
- <td valign="top" class="headerContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
- <tbody class="mcnImageBlockOuter">
- <tr>
- <td valign="top" style="padding:9px" class="mcnImageBlockInner">
- <table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
- <tbody>
- <tr>
- <td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
- <img align="center" alt="" src="' . $this->config['PHPMAILER-logo'] . '" width="564" style="max-width:700px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </table>
- <!--[if (gte mso 9)|(IE)]>
- </td>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- <tr>
- <td align="center" valign="top" id="templateBody" data-template-container>
- <!--[if (gte mso 9)|(IE)]>
- <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
- <tr>
- <td align="center" valign="top" width="600" style="width:600px;">
- <![endif]-->
- <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
- <tr>
- <td valign="top" class="bodyContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
- <tbody class="mcnTextBlockOuter">
- <tr>
- <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
- <!--[if mso]>
- <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
- <tr>
- <![endif]-->
- <!--[if mso]>
- <td valign="top" width="600" style="width:600px;">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
- <tbody>
- <tr>
- <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
- ' . $body . '
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- </tbody>
- </table>
- ' . $button . $info . '
- </td>
- </tr>
- </table>
- <!--[if (gte mso 9)|(IE)]>
- </td>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- <tr>
- <td align="center" valign="top" id="templateFooter" data-template-container>
- <!--[if (gte mso 9)|(IE)]>
- <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
- <tr>
- <td align="center" valign="top" width="600" style="width:600px;">
- <![endif]-->
- <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
- <tr>
- <td valign="top" class="footerContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowBlock" style="min-width:100%;">
- <tbody class="mcnFollowBlockOuter">
- <tr>
- <td align="center" valign="top" style="padding:9px" class="mcnFollowBlockInner">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentContainer" style="min-width:100%;">
- <tbody>
- <tr>
- <td align="center" style="padding-left:9px;padding-right:9px;">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%; border: 1px none;" class="mcnFollowContent">
- <tbody>
- <tr>
- <td align="center" valign="top" style="padding-top:9px; padding-right:9px; padding-left:9px;">
- <table align="center" border="0" cellpadding="0" cellspacing="0">
- <tbody>
- <tr>
- <td align="center" valign="top">
- <!--[if mso]>
- <table align="center" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <![endif]-->
- <!--[if mso]>
- <td align="center" valign="top">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
- <tbody>
- <tr>
- <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
- <tbody>
- <tr>
- <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
- <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
- <tbody>
- <tr>
- <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
- <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>
- </td>
- <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
- <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>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- <td align="center" valign="top">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
- <tbody>
- <tr>
- <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
- <tbody>
- <tr>
- <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
- <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
- <tbody>
- <tr>
- <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
- <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>
- </td>
- <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
- <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>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- <td align="center" valign="top">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
- <tbody>
- <tr>
- <td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
- <tbody>
- <tr>
- <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
- <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
- <tbody>
- <tr>
- <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
- <a href="https://organizr.app" 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>
- </td>
- <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
- <a href="https://organizr.app" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">Website</a>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- <td align="center" valign="top">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
- <tbody>
- <tr>
- <td valign="top" style="padding-right:0; padding-bottom:9px;" class="mcnFollowContentItemContainer">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
- <tbody>
- <tr>
- <td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
- <table align="left" border="0" cellpadding="0" cellspacing="0" width="">
- <tbody>
- <tr>
- <td align="center" valign="middle" width="24" class="mcnFollowIconContent">
- <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>
- </td>
- <td align="left" valign="middle" class="mcnFollowTextContent" style="padding-left:5px;">
- <a href="https://discord.gg/TrNtY7N" target="" style="font-family: Helvetica;font-size: 12px;text-decoration: none;color: #FFFFFF;font-weight: bold;">Discord</a>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
- <tbody class="mcnDividerBlockOuter">
- <tr>
- <td class="mcnDividerBlockInner" style="min-width: 100%; padding: 0px 18px;">
- <table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #505050;">
- <tbody>
- <tr>
- <td>
- <span></span>
- </td>
- </tr>
- </tbody>
- </table>
- <!--
- <td class="mcnDividerBlockInner" style="padding: 18px;">
- <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;" />
- -->
- </td>
- </tr>
- </tbody>
- </table>
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
- <tbody class="mcnTextBlockOuter">
- <tr>
- <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
- <!--[if mso]>
- <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
- <tr>
- <![endif]-->
- <!--[if mso]>
- <td valign="top" width="600" style="width:600px;">
- <![endif]-->
- <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
- <tbody>
- <tr>
- <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
- <em>Powered By: Organizr</em>
- </td>
- </tr>
- </tbody>
- </table>
- <!--[if mso]>
- </td>
- <![endif]-->
- <!--[if mso]>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </table>
- <!--[if (gte mso 9)|(IE)]>
- </td>
- </tr>
- </table>
- <![endif]-->
- </td>
- </tr>
- </table>
- <!-- // END TEMPLATE -->
- </td>
- </tr>
- </table>
- </center>
- </body>
- </html>
- ';
|