# friends/4.2.1/templates/email/footer-text.php

Friends, version 4.2.1. 16 lines.

- Page: https://pluginprobe.com/plugins/friends/4.2.1/code/templates/email/footer-text.php
- Raw: https://pluginprobe.com/plugins/friends/4.2.1/raw/templates/email/footer-text.php
- Modified: 2025-06-04T19:21:14+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/friends/4.2.1/code/templates/email/footer-text.php#L10-L20`.

```php
<?php
/**
 * This template contains the HTML footer for HTML e-mails.
 *
 * @version 1.0
 * @package Friends
 */

// This is a text e-mail, not a place for HTML escaping.
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped

echo PHP_EOL . PHP_EOL;

// translators: %1$s is a site name, %2$s is a site url.
printf( __( 'This notification was sent by the Friends plugin on %1$s at %2$s.', 'friends' ), get_option( 'blogname' ), home_url() );

```
