# weforms/1.2.8/includes/email/template/footer.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.2.8. 57 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.2.8/code/includes/email/template/footer.php
- Raw: https://pluginprobe.com/plugins/weforms/1.2.8/raw/includes/email/template/footer.php
- Modified: 2017-08-19T10:54:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/weforms/1.2.8/code/includes/email/template/footer.php#L10-L20`.

```php
<?php
/**
 * Email Footer
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

?>
                                                            </div>
                                                        </td>
                                                    </tr>
                                                </table>
                                                <!-- End Content -->
                                            </td>
                                        </tr>
                                    </table>
                                    <!-- End Body -->
                                </td>
                            </tr>
                        </table>

                        <!-- Footer -->
                        <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer">
                            <tr>
                                <td valign="top">
                                    <table border="0" cellpadding="10" cellspacing="0" width="100%">
                                        <tr>
                                            <td colspan="2" valign="middle" id="credit">
                                                <?php
                                                $settings = weforms_get_settings( 'email_settings' );
                                                if ( is_array( $settings ) && ( isset( $settings['footer_text'] ) && !empty( $settings['footer_text'] ) ) ) {
                                                    $footer_text = $settings['footer_text'];
                                                }

                                                $footer_text = empty( $footer_text ) ? sprintf( '&copy; %s. Powered by <a href="%s">weForms</a>.', get_bloginfo( 'name', 'display' ), 'https://wordpress.org/plugins/weforms/' ) : $footer_text;
                                                $footer_text = wpautop( wp_kses_post( wptexturize( apply_filters( 'weforms_email_footer_text', $footer_text ) ) ) );

                                                echo $footer_text;

                                                do_action( 'weforms_email_after_footer' );
                                                ?>
                                            </td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>
                        </table>
                        <!-- End Footer -->
                    </td>
                </tr>
            </table>
        </div>
    </body>
</html>

```
