initial commit
This commit is contained in:
21
app/View/Emails/html/backup_archive_process_error.ctp
Normal file
21
app/View/Emails/html/backup_archive_process_error.ctp
Normal file
@@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
<body>
|
||||
Dear Team<br/><br/>
|
||||
|
||||
<?php echo $data['title'];?>
|
||||
<br/>
|
||||
<br/>
|
||||
Please review the error and take the necessary actions to resolve the issue.
|
||||
<br/>
|
||||
<br/>
|
||||
Regards,<br/>
|
||||
System Notification<br/>
|
||||
</body>
|
||||
</html>
|
||||
29
app/View/Emails/html/default.ctp
Normal file
29
app/View/Emails/html/default.ctp
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package app.View.Layouts.Email.html
|
||||
* @since CakePHP(tm) v 0.10.0.1076
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $title_for_layout; ?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
<body>
|
||||
<?php echo $content_for_layout; ?>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
50
app/View/Emails/html/email.ctp
Normal file
50
app/View/Emails/html/email.ctp
Normal file
@@ -0,0 +1,50 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount</title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<style type="text/css">
|
||||
img{
|
||||
display:block;
|
||||
}
|
||||
</style>
|
||||
|
||||
<?php
|
||||
$expense_type_name = "WeXpense";
|
||||
$expenseType = trim(substr($data["unique_url"], 0, 1));
|
||||
|
||||
$http_url = HTTP_SITE_URL."/".$data["unique_url"];
|
||||
if($expenseType == "2"){
|
||||
$expense_type_name = "MessXpense";
|
||||
} else if($expenseType == "3"){
|
||||
$expense_type_name = "MyXpense";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td style="border-bottom: 8px solid #3784cc; padding-bottom:20px;"></td>
|
||||
</tr>
|
||||
|
||||
<tr><td style="height: 20px;"> </td></tr>
|
||||
<tr>
|
||||
<td style="font-family:Helvetica, Arial, sans-serif; font-size:14px; color:#000;"> The <?php echo $expense_type_name;?> group"<?php echo $data["expense_title"];?>" <?php echo __("LBL_ACCESSIBLE_ON_EXPENSECOUNT"); ?> <?php echo __('LBL_THE_URL_IS'); ?>:<br/> <a style="color:#ff6804;" href="<?php echo $http_url;?>" target="_blank"><?php echo $http_url;?></a> </td>
|
||||
</tr>
|
||||
<tr><td style="height: 20px;"> </td></tr>
|
||||
<tr>
|
||||
<td style="font-family:Helvetica, Arial, sans-serif; font-size:14px; color:#000; line-height:20px;"><?php echo __("LBL_ACCESS_FROM_MOBILE"); ?>
|
||||
<br/> <br/>
|
||||
<?php echo __("LBL_EXPENSECOUNT_TOOL_CREATE_GROUP_MESS_FAMILY_EXPENSE"); ?> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="height:30px;"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
35
app/View/Emails/html/export_receipt_email.ctp
Normal file
35
app/View/Emails/html/export_receipt_email.ctp
Normal file
@@ -0,0 +1,35 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="Download your requested file from ExpenseCount." />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Hello,</p>
|
||||
|
||||
<p>Great news! Your requested file is now ready for download.</p>
|
||||
|
||||
<p>
|
||||
You can download it using the link below:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="<?php echo $data['download_url']; ?>" target="_blank">Download File</a>
|
||||
</p>
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
<p>
|
||||
Please note: This link may expire at <?php echo $data['expire_time']; ?>.
|
||||
</p>
|
||||
|
||||
<br/>
|
||||
|
||||
Thanks,<br/>
|
||||
ExpenseCount Team<br/>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
20
app/View/Emails/html/feedback.ctp
Normal file
20
app/View/Emails/html/feedback.ctp
Normal file
@@ -0,0 +1,20 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<p><b>Email From:</b> <?php echo $data["email_from"];?></p>
|
||||
<p><b>IP:</b> <?php echo $data["ip"];?></p>
|
||||
<p><b>Comment :</b><br/> <?php echo $data["comment"];?></p>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
22
app/View/Emails/html/permission_granted_email.ctp
Normal file
22
app/View/Emails/html/permission_granted_email.ctp
Normal file
@@ -0,0 +1,22 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Great news! You now have <strong><?php echo $data['permission_type'];?></strong> access to <strong><?php echo $data['title'];?></strong>.</p>
|
||||
|
||||
<p>Click the link below to access the group:</p>
|
||||
<p> <a href="<?php echo HTTP_SITE_URL . '/' . $data['unique_url']; ?>" target="_blank">Access Now</a> </p>
|
||||
<br/>
|
||||
|
||||
<br/>
|
||||
Thanks,<br/>
|
||||
ExpenseCount Team<br/>
|
||||
</body>
|
||||
</html>
|
||||
17
app/View/Emails/html/report.ctp
Normal file
17
app/View/Emails/html/report.ctp
Normal file
@@ -0,0 +1,17 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
<body>
|
||||
Dear <br/><br/>
|
||||
Welcome to ExpenseCount. Please find-out attachment herewith.
|
||||
<br/>
|
||||
<br/>
|
||||
Thanks,<br/>
|
||||
ExpenseCount Team<br/>
|
||||
</body>
|
||||
</html>
|
||||
26
app/View/Emails/html/reset_password.ctp
Normal file
26
app/View/Emails/html/reset_password.ctp
Normal file
@@ -0,0 +1,26 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, MessXpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
Dear <?php echo $data['first_name'];?>,<br/><br/>
|
||||
|
||||
Please click <a href=" <?php echo HTTP_SITE_URL . '/users/resetpass/' . $data['token_str']; ?>" target="_blank">here</a> to reset your password or copy paste below link in browser URL bar:
|
||||
<br/>
|
||||
<br/>
|
||||
<?php echo HTTP_SITE_URL . '/users/resetpass/' . $data['token_str']; ?>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Regards,<br/>
|
||||
Admin <br/>
|
||||
ExpenseCount <br/>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
25
app/View/Emails/html/user_verification.ctp
Normal file
25
app/View/Emails/html/user_verification.ctp
Normal file
@@ -0,0 +1,25 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ExpenseCount - <?php echo __("LBL_WEBSITE_TITLE");?></title>
|
||||
<meta name="description" content="A complete solution for managing all your expenses. With our three products - WeXpense, MessXpense, and MyXpense — you can easily organize group, shared, and personal expenses based on your needs. Fast, simple, and free. Available on iPhone and Android." />
|
||||
<meta name="keywords" content="WeXpense, We Xpense, GroupXpense, Group Xpense, ExpenseCount, expensecount.com, expcount, expense count, split expenses, split bills, SplitWise, Spid, MyXpense, My Xpense, My Expense, personal expense tracker, personal budgeting app, shared room expenses, roommates cost sharing, MessXpense, Mess Xpense, Room Xpense, mess expense app, hostel expense manager, group expense manager, shared expense, group trip organizer, travel expense tracker, friends expenses, roommates expenses, Manage Group Expense, Track Expense, expenditure tracking, group activity expenses, bill splitting app, group budgeting, expense sheet, expense report, group expense report, household expense tracker, finance organizer, daily expense manager, monthly expense tracker, We Expense Manager, We Expense Calculator, organize expenses, accounting, tally expenses, split cost app, shared budgeting, organize travel costs, manage expenses, group activities, expense sharing app" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
Dear <?php echo $data['first_name'];?>,<br/><br/>
|
||||
|
||||
Welcome to ExpenseCount. Please verify your email address to activate your account.
|
||||
To verify your email address please click this link:
|
||||
<a href="<?php echo HTTP_SITE_URL . '/users/verify?vt=' . $data['verification_token'] . '&p=' . $data['profile_id']; ?>" target="_blank">Verify Email</a>
|
||||
<br/>
|
||||
|
||||
<br/>
|
||||
|
||||
Thanks,<br/>
|
||||
ExpenseCount Team<br/>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
19
app/View/Emails/text/default.ctp
Normal file
19
app/View/Emails/text/default.ctp
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||
* @link http://cakephp.org CakePHP(tm) Project
|
||||
* @package app.View.Layouts.Email.text
|
||||
* @since CakePHP(tm) v 0.10.0.1076
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
?>
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user