-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_notifications.php
36 lines (27 loc) · 1.38 KB
/
config_notifications.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* @subpackage : Wordpress
* @author : Jonathon Byrd
* @copyright : All Rights Reserved, Byrd Inc. 2009
* @link : http://www.jonathonbyrd.com
*
* Jonathon Byrd is a freelance developer for hire. Jonathon has owned many companies and
* understands the importance of website credibility. Contact Jonathon Today.
*
*/
// Check to ensure this file is within the rest of the framework
defined('_EXEC') or die();
?>
<h2>Email Notifications</h2>
<b>mail_signup.php</b>
<p>This email is sent when a user signs up for the first time.</p>
<textarea class="large" name="_mail_signup"><?php echo stripslashes(file_get_contents( ROL.DS.'mail_signup.php' )); ?></textarea>
<b>mail_renewed.php</b>
<p>This email is sent when a payment is made on an existing account.</p>
<textarea class="large" name="_mail_renewed"><?php echo stripslashes(file_get_contents( ROL.DS.'mail_renewed.php' )); ?></textarea>
<b>mail_expired.php</b>
<p>This email is sent when a users automated payments failed indefinitely.</p>
<textarea class="large" name="_mail_expired"><?php echo stripslashes(file_get_contents( ROL.DS.'mail_expired.php' )); ?></textarea>
<b>mail_canceled.php</b>
<p>This email is sent when a user chooses to cancel their account manually.</p>
<textarea class="large" name="_mail_canceled"><?php echo stripslashes(file_get_contents( ROL.DS.'mail_canceled.php' )); ?></textarea>