mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-31 01:35:15 +02:00
Add version upgrade for 4.1.3
This commit is contained in:
parent
46da0c6719
commit
2c1e5f1a61
@ -3,40 +3,46 @@ require_once '../mysql_connect.php';
|
|||||||
require_once 'libs/InitialMails.php';
|
require_once 'libs/InitialMails.php';
|
||||||
|
|
||||||
// Unassign tickets whose owner doesn't service the department
|
// Unassign tickets whose owner doesn't service the department
|
||||||
|
function parse_department($carry, $departmentId) {
|
||||||
|
return $carry ." AND (NOT department_id='$departmentId')";
|
||||||
|
}
|
||||||
|
|
||||||
$staffQueryResult = $mysql->query("SELECT id FROM staff");
|
$staffQueryResult = $mysql->query("SELECT id FROM staff");
|
||||||
while($staff = $staffQueryResult->fetch_array(MYSQLI_ASSOC)) {
|
while($staff = $staffQueryResult->fetch_array(MYSQLI_ASSOC)) {
|
||||||
|
$staffId = $staff['id'];
|
||||||
$departments = [];
|
$departments = [];
|
||||||
|
|
||||||
$departmentQueryResult = $mysql->query("SELECT department_id FROM department_staff WHERE staff_id='" . $staff['id'] . "'");
|
$departmentQueryResult = $mysql->query("SELECT department_id FROM department_staff WHERE staff_id='$staffId'");
|
||||||
while($department = $departmentQueryResult->fetch_array(MYSQLI_ASSOC)) $departments[] = $department['department_id'];
|
while($department = $departmentQueryResult->fetch_array(MYSQLI_ASSOC)) $departments[] = $department['department_id'];
|
||||||
|
|
||||||
function parse_department($departmentId) {
|
|
||||||
return " AND (NOT department_id='$departmentId')";
|
|
||||||
}
|
|
||||||
|
|
||||||
$ticketQueryResult = $mysql->query(
|
$ticketQueryResult = $mysql->query(
|
||||||
"SELECT id FROM ticket WHERE owner_id='" . $staff['id'] . "'" . array_map("parse_department", $departments) . ")"
|
"SELECT id FROM ticket WHERE owner_id='$staffId'" . array_reduce($departments, "parse_department", "")
|
||||||
);
|
);
|
||||||
|
|
||||||
while($ticket = $ticketQueryResult->fetch_array(MYSQLI_ASSOC)) {
|
while($ticketQueryResult && $ticket = $ticketQueryResult->fetch_array(MYSQLI_ASSOC)) {
|
||||||
$mysql->query("UPDATE ticket SET owner_id=NULL WHERE id='" . $ticket['id'] . "'");
|
$ticketId = $ticket['id'];
|
||||||
$mysql->query("DELETE staff_ticket WHERE ticket_id='" . $ticket['id'] . "'");
|
$currentDate = date('YmdHi');
|
||||||
|
|
||||||
|
$mysql->query("UPDATE ticket SET owner_id=NULL WHERE id='$ticketId'");
|
||||||
|
$mysql->query("DELETE from staff_ticket WHERE ticket_id='$ticketId'");
|
||||||
|
$mysql->query("INSERT into ticketevent VALUES(NULL, 'UN_ASSIGN', $currentDate, $ticketId, $staffId, NULL)");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add new languages
|
// Add new languages
|
||||||
$mysql->query("INSERT into langauge VALUES(NULL, 'br', '0', '0')");
|
$mysql->query("INSERT into language VALUES(NULL, 'br', '0', '0')");
|
||||||
$mysql->query("INSERT into langauge VALUES(NULL, 'gr', '0', '0')");
|
$mysql->query("INSERT into language VALUES(NULL, 'gr', '0', '0')");
|
||||||
$mysql->query("INSERT into langauge VALUES(NULL, 'bl', '0', '0')");
|
$mysql->query("INSERT into language VALUES(NULL, 'nl', '0', '0')");
|
||||||
|
|
||||||
|
|
||||||
// Repopulate mails
|
// Repopulate mails
|
||||||
$mysql->query("DELETE FROM mailtemplate");
|
$mysql->query("DELETE FROM mailtemplate");
|
||||||
InitialMails::retrieve();
|
$mails = InitialMails::retrieve();
|
||||||
|
|
||||||
foreach ($mails as $mailType => $mailLanguages) {
|
foreach ($mails as $mailType => $mailLanguages) {
|
||||||
foreach ($mailLanguages as $mailLanguage => $mailContent) {
|
foreach ($mailLanguages as $mailLanguage => $mailContent) {
|
||||||
$mailSubject = $mailContent['subject'];
|
$mailSubject = $mailContent['subject'];
|
||||||
$mailBody = $mailContent['body'];
|
$mailBody = $mysql->real_escape_string($mailContent['body']);
|
||||||
$mysql->query(
|
$mysql->query(
|
||||||
"INSERT into mailtemplate (id, type, subject, language, body) VALUES " .
|
"INSERT into mailtemplate (id, type, subject, language, body) VALUES " .
|
||||||
"(NULL, '$mailType', '$mailSubject', '$mailLanguage' , '$mailBody')"
|
"(NULL, '$mailType', '$mailSubject', '$mailLanguage' , '$mailBody')"
|
||||||
@ -53,5 +59,6 @@ $content .= 'define(\'MYSQL_USER\', \'' . MYSQL_USER . '\');' . PHP_EOL;
|
|||||||
$content .= 'define(\'MYSQL_PASSWORD\', \'' . MYSQL_PASSWORD . '\');' . PHP_EOL;
|
$content .= 'define(\'MYSQL_PASSWORD\', \'' . MYSQL_PASSWORD . '\');' . PHP_EOL;
|
||||||
$content .= 'define(\'MYSQL_DATABASE\', \'' . MYSQL_DATABASE . '\');' . PHP_EOL;
|
$content .= 'define(\'MYSQL_DATABASE\', \'' . MYSQL_DATABASE . '\');' . PHP_EOL;
|
||||||
|
|
||||||
|
|
||||||
fwrite($configFile, $content);
|
fwrite($configFile, $content);
|
||||||
fclose($configFile);
|
fclose($configFile);
|
||||||
|
384
version_upgrades/4.1.3/data/mail-templates/ticket-closed.html
Normal file
384
version_upgrades/4.1.3/data/mail-templates/ticket-closed.html
Normal file
@ -0,0 +1,384 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{TICKET_CLOSED_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{TICKET_CLOSED_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{TICKET_CLOSED_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/check-ticket/{{ticketNumber}}/{{to}}" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Check Ticket</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/check-ticket/{{ticketNumber}}/{{to}}"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Check Ticket</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,378 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{TICKET_CREATED_STAFF_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{TICKET_CREATED_STAFF_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{TICKET_CREATED_STAFF_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{TICKET_CREATED_STAFF_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
389
version_upgrades/4.1.3/data/mail-templates/ticket-created.html
Normal file
389
version_upgrades/4.1.3/data/mail-templates/ticket-created.html
Normal file
@ -0,0 +1,389 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{TICKET_CREATED_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{TICKET_CREATED_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{TICKET_CREATED_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{TICKET_CREATED_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/check-ticket/{{ticketNumber}}/{{to}}" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Check Ticket</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/check-ticket/{{ticketNumber}}/{{to}}"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Check Ticket</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
384
version_upgrades/4.1.3/data/mail-templates/ticket-responded.html
Normal file
384
version_upgrades/4.1.3/data/mail-templates/ticket-responded.html
Normal file
@ -0,0 +1,384 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{TICKET_RESPONDED_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{TICKET_RESPONDED_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{TICKET_RESPONDED_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Check Ticket</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Check Ticket</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
356
version_upgrades/4.1.3/data/mail-templates/user-edit-email.html
Normal file
356
version_upgrades/4.1.3/data/mail-templates/user-edit-email.html
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{USER_EMAIL_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{USER_EMAIL_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,356 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
</td>
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{USER_PASSWORD_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{USER_PASSWORD_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,389 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{PASSWORD_FORGOT_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{PASSWORD_FORGOT_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{PASSWORD_FORGOT_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{PASSWORD_FORGOT_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/recover-password?email={{to}}&token={{token}}" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Recover password</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/recover-password?email={{to}}&token={{token}}"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Recover password</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
389
version_upgrades/4.1.3/data/mail-templates/user-signup.html
Normal file
389
version_upgrades/4.1.3/data/mail-templates/user-signup.html
Normal file
@ -0,0 +1,389 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{USER_SIGNUP_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{USER_SIGNUP_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{USER_SIGNUP_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{USER_SIGNUP_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/verify-token/{{to}}/{{verificationToken}}" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Verify Account</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/verify-token/{{to}}/{{verificationToken}}"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Verify Account</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,389 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{USER_SYSTEM_DISABLED_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{USER_SYSTEM_DISABLED_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{USER_SYSTEM_DISABLED_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{USER_SYSTEM_DISABLED_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/check-ticket" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Check Ticket</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/check-ticket"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Check Ticket</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,389 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Support Center</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
/* Take care of image borders and formatting, client hacks */
|
||||||
|
img { max-width: 600px; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
|
||||||
|
a img { border: none; }
|
||||||
|
table { border-collapse: collapse !important;}
|
||||||
|
#outlook a { padding:0; }
|
||||||
|
.ReadMsgBody { width: 100%; }
|
||||||
|
.ExternalClass { width: 100%; }
|
||||||
|
.backgroundTable { margin: 0 auto; padding: 0; width: 100% !important; }
|
||||||
|
table td { border-collapse: collapse; }
|
||||||
|
.ExternalClass * { line-height: 115%; }
|
||||||
|
.container-for-gmail-android { min-width: 600px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* General styling */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
height: 100%;
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777777;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 21px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #676767;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-lg,
|
||||||
|
.header-md,
|
||||||
|
.header-sm {
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: normal;
|
||||||
|
padding: 35px 0 0;
|
||||||
|
color: #4d4d4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-md {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-sm {
|
||||||
|
padding: 5px 0;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-padding {
|
||||||
|
padding: 20px 0 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-right {
|
||||||
|
width: 290px;
|
||||||
|
text-align: right;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-header-padding-left {
|
||||||
|
width: 290px;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.free-text {
|
||||||
|
width: 100% !important;
|
||||||
|
padding: 10px 60px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #e5e5e5;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
padding: 55px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-block {
|
||||||
|
padding: 0 20px;
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block-container {
|
||||||
|
padding: 30px 50px;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-block {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 498px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 60px 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-rounded {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-img {
|
||||||
|
width: 258px;
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-img {
|
||||||
|
width: 480px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-full {
|
||||||
|
width: 600px;
|
||||||
|
height: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img img {
|
||||||
|
width: 82px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-img {
|
||||||
|
width: 92px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-msg {
|
||||||
|
width: 236px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: left;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
padding: 10px 0;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
color: #4d4d4d;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-width-gmail {
|
||||||
|
min-width:600px;
|
||||||
|
height: 0px !important;
|
||||||
|
line-height: 1px !important;
|
||||||
|
font-size: 1px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-width {
|
||||||
|
width: 228px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
@media screen {
|
||||||
|
/* Thanks Outlook 2013! */
|
||||||
|
* {
|
||||||
|
font-family: 'Oxygen', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||||
|
/* Mobile styles */
|
||||||
|
@media only screen and (max-width: 480px) {
|
||||||
|
|
||||||
|
table[class*="container-for-gmail-android"] {
|
||||||
|
min-width: 290px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table[class="w320"] {
|
||||||
|
width: 320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-gmail"] {
|
||||||
|
display: none !important;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[class="button-width"],
|
||||||
|
a[class="button-mobile"] {
|
||||||
|
width: 248px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-left"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="mobile-header-padding-right"] {
|
||||||
|
width: 160px !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-lg"] {
|
||||||
|
font-size: 24px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="header-md"] {
|
||||||
|
font-size: 18px !important;
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="content-padding"] {
|
||||||
|
padding: 5px 0 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="button"] {
|
||||||
|
padding: 15px 0 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class*="free-text"] {
|
||||||
|
padding: 10px 18px 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[class="force-width-img"],
|
||||||
|
img[class="force-width-full"] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-block"] {
|
||||||
|
display: block !important;
|
||||||
|
width: 280px !important;
|
||||||
|
padding-bottom: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="info-img"],
|
||||||
|
img[class="info-img"] {
|
||||||
|
width: 278px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block-container"] {
|
||||||
|
padding: 8px 20px !important;
|
||||||
|
width: 280px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="mini-block"] {
|
||||||
|
padding: 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-img"] {
|
||||||
|
display: block !important;
|
||||||
|
text-align: center !important;
|
||||||
|
width: 100% !important;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[class="user-msg"] {
|
||||||
|
display: block !important;
|
||||||
|
padding-bottom: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor="#f7f7f7">
|
||||||
|
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="100%" style="background-color: #ffffff;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" style="border-bottom: 1px solid #cccccc">
|
||||||
|
<tr>
|
||||||
|
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
|
||||||
|
<center>
|
||||||
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<!--[if gte mso 9]>
|
||||||
|
</v:textbox>
|
||||||
|
</v:rect>
|
||||||
|
<![endif]-->
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td class="header-lg">
|
||||||
|
{{USER_SYSTEM_ENABLED_MATCH_1}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
{{USER_SYSTEM_ENABLED_MATCH_2}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block-container">
|
||||||
|
<table cellspacing="0" cellpadding="0" width="100%" style="border-collapse:separate !important;">
|
||||||
|
<tr>
|
||||||
|
<td class="mini-block">
|
||||||
|
<table cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="padding-bottom: 30px;">
|
||||||
|
{{USER_SYSTEM_ENABLED_MATCH_3}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{USER_SYSTEM_ENABLED_MATCH_4}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="button">
|
||||||
|
<div><!--[if mso]>
|
||||||
|
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{url}}/" style="height:45px;v-text-anchor:middle;width:155px;" arcsize="15%" strokecolor="#ffffff" fillcolor="#ff6f6f">
|
||||||
|
<w:anchorlock/>
|
||||||
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Access my account</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/"
|
||||||
|
style="background-color:#ff6f6f;border-radius:5px;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">Access my account</a></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; height: 100px;">
|
||||||
|
<center>
|
||||||
|
<table cellspacing="0" cellpadding="0" width="600" class="w320">
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 25px 0 25px">
|
||||||
|
<strong>OpenSupports</strong><br />
|
||||||
|
Open source ticket system<br />
|
||||||
|
www.opensupports.com<br /><br />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once '../api/config.php';
|
require_once '../../api/config.php';
|
||||||
|
|
||||||
$mysql_host = MYSQL_HOST;
|
$mysql_host = MYSQL_HOST;
|
||||||
$mysql_port = defined('MYSQL_PORT') ? MYSQL_PORT : '3306';
|
$mysql_port = defined('MYSQL_PORT') ? MYSQL_PORT : '3306';
|
||||||
$mysql_user = MYSQL_USER;
|
$mysql_user = MYSQL_USER;
|
||||||
$mysql_password = MYSQL_PASSWORD;
|
$mysql_password = MYSQL_PASSWORD;
|
||||||
$mysql_db = MYSQL_DB;
|
$mysql_db = MYSQL_DATABASE;
|
||||||
|
|
||||||
$mysql = new mysqli($mysql_host, $mysql_user, $mysql_password, $mysql_db, $mysql_port);
|
$mysql = new mysqli($mysql_host, $mysql_user, $mysql_password, $mysql_db, $mysql_port);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user