# learnpress/4.3.7/templates/emails/email-footer.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.7. 33 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.7/code/templates/emails/email-footer.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.7/raw/templates/emails/email-footer.php
- Modified: 2026-05-23T18:20:54+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/learnpress/4.3.7/code/templates/emails/email-footer.php#L10-L20`.

```php
<?php
/**
 * Template for displaying email footer.
 *
 * @author ThimPress
 * @package LearnPress/Templates
 * @version 3.0.0
 */

defined( 'ABSPATH' ) or exit();
?>
						</td>
					</tr>
					</tbody>
					<?php
					if ( ! empty( $footer_text ) ) {
					?>
					<tfoot id="email-footer">
					<tr>
						<td>
							<?php echo wp_kses_post( $footer_text ); ?>
						</td>
					</tr>
					</tfoot>
					<?php
					}
					?>
				</table>
			</td>
		</tr>
	</table>
</div>

```
