14 lines
912 B
PHP
14 lines
912 B
PHP
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
|
|
<?php echo G\Render\include_theme_file('mails/header'); ?>
|
|
|
|
<?php _se('We received a request to change the email of your <a href="%u">%n</a> account at %w.', ['%u' => G\get_global('theme_mail')['user']['url'], '%n' => G\get_global('theme_mail')['user']['name'], '%w' => CHV\getSetting('website_name')]); ?>
|
|
<br><br>
|
|
<?php _se('To complete the process you must <a href="%s">activate your email</a>.', G\get_global('theme_mail')['link']); ?>
|
|
<br><br>
|
|
<?php _se('Alternatively you can copy and paste the URL into your browser: <a href="%s">%s</a>', ['%s' => G\get_global('theme_mail')['link']]); ?>
|
|
<br><br>
|
|
<?php _se("If you didn't intend this just ignore this message."); ?>
|
|
<br>
|
|
<?php _se('This request was made from IP: %s', G\get_client_ip()); ?>
|
|
|
|
<?php echo G\Render\include_theme_file('mails/footer'); ?>
|