| 1 |
<?php |
| 2 |
/** |
| 3 |
* This template contains the HTML footer for HTML e-mails. |
| 4 |
* |
| 5 |
* @version 1.0 |
| 6 |
* @package Friends |
| 7 |
*/ |
| 8 |
|
| 9 |
// This is a text e-mail, not a place for HTML escaping. |
| 10 |
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 11 |
|
| 12 |
echo PHP_EOL . PHP_EOL; |
| 13 |
|
| 14 |
// translators: %1$s is a site name, %2$s is a site url. |
| 15 |
printf( __( 'This notification was sent by the Friends plugin on %1$s at %2$s.', 'friends' ), get_option( 'blogname' ), home_url() ); |
| 16 |
|