body-default.php
2 years ago
default.php
2 years ago
field-default.php
2 years ago
footer-default.php
2 years ago
header-default.php
2 years ago
footer-default.php
71 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Email Footer |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/everest-forms/emails/footer-default.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion Everest Forms will need to update template files and you |
| 8 | * and you (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.everestforms.net/ |
| 14 | * @package EverestForms/Templates |
| 15 | * @version 1.2.0 |
| 16 | */ |
| 17 | |
| 18 | defined( 'ABSPATH' ) || exit; |
| 19 | |
| 20 | $background_color = '#e9eaec'; |
| 21 | ?> |
| 22 | </td> |
| 23 | </tr> |
| 24 | </tbody> |
| 25 | </table> |
| 26 | </td> |
| 27 | </tr> |
| 28 | </tbody> |
| 29 | </table> |
| 30 | </td> |
| 31 | </tr> |
| 32 | <tr> |
| 33 | <td valign="top" id="templateFooter" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo esc_attr( $background_color ); ?>;border-top: 0;border-bottom: 0;padding-top: 12px;padding-bottom: 12px;"> |
| 34 | <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;"> |
| 35 | <tbody class="mcnTextBlockOuter"> |
| 36 | <tr> |
| 37 | <td valign="top" class="mcnTextBlockInner" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;"> |
| 38 | <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnTextContentContainer"> |
| 39 | <tbody> |
| 40 | <tr> |
| 41 | <td valign="top" class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;word-break: break-word;color: #aaa;font-family: Helvetica;font-size: 12px;line-height: 150%;text-align: center;"> |
| 42 | <!-- Footer content --> |
| 43 | <?php |
| 44 | /* translators: %s - link to a site. */ |
| 45 | $footer = sprintf( esc_html__( 'Sent from %s', 'everest-forms' ), '<a href="' . esc_url( home_url() ) . '" style="color:#bbbbbb;">' . wp_specialchars_decode( get_bloginfo( 'name' ) ) . '</a>' ); |
| 46 | echo wp_kses_post( apply_filters( 'everest_forms_email_footer_text', $footer ) ); |
| 47 | ?> |
| 48 | </td> |
| 49 | </tr> |
| 50 | </tbody> |
| 51 | </table> |
| 52 | </td> |
| 53 | </tr> |
| 54 | </tbody> |
| 55 | </table> |
| 56 | </td> |
| 57 | </tr> |
| 58 | </table> |
| 59 | <!--[if gte mso 9]> |
| 60 | </td> |
| 61 | </tr> |
| 62 | </table> |
| 63 | <![endif]--> |
| 64 | <!-- // END TEMPLATE --> |
| 65 | </td> |
| 66 | </tr> |
| 67 | </table> |
| 68 | </center> |
| 69 | </body> |
| 70 | </html> |
| 71 |