mirror of
https://github.com/opensupports/opensupports.git
synced 2025-07-28 08:14:25 +02:00
Ivan - Add nice styling to emails [skip ci]
This commit is contained in:
parent
475d11ccac
commit
fdfcb751d3
@ -30,14 +30,14 @@ class DisableUserSystemController extends Controller {
|
|||||||
$userList = User::getAll();
|
$userList = User::getAll();
|
||||||
|
|
||||||
foreach($userList as $user) {
|
foreach($userList as $user) {
|
||||||
$ticketNumberList = [];
|
$ticketNumberList = '';
|
||||||
|
|
||||||
foreach($user->sharedTicketList as $ticket) {
|
foreach($user->sharedTicketList as $ticket) {
|
||||||
$ticket->authorEmail = $user->email;
|
$ticket->authorEmail = $user->email;
|
||||||
$ticket->authorName = $user->name;
|
$ticket->authorName = $user->name;
|
||||||
$ticket->author = null;
|
$ticket->author = null;
|
||||||
|
|
||||||
$ticketNumberList[] = $ticket->ticketNumber;
|
$ticketNumberList .= $ticket->ticketNumber . ' - ' . $ticket->title . '<br />';
|
||||||
$ticket->store();
|
$ticket->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ class DisableUserSystemController extends Controller {
|
|||||||
$mailSender->setTemplate(MailTemplate::USER_SYSTEM_DISABLED, [
|
$mailSender->setTemplate(MailTemplate::USER_SYSTEM_DISABLED, [
|
||||||
'to' => $user->email,
|
'to' => $user->email,
|
||||||
'name' => $user->name,
|
'name' => $user->name,
|
||||||
'tickets' => json_encode($ticketNumberList)
|
'tickets' => $ticketNumberList
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$mailSender->send();
|
$mailSender->send();
|
||||||
|
@ -63,7 +63,7 @@ class RecoverPasswordController extends Controller {
|
|||||||
public function sendMail() {
|
public function sendMail() {
|
||||||
$mailSender = new MailSender();
|
$mailSender = new MailSender();
|
||||||
|
|
||||||
$mailSender->setTemplate(MailTemplate::PASSWORD_RECOVERED, [
|
$mailSender->setTemplate(MailTemplate::USER_PASSWORD, [
|
||||||
'to' => $this->user->email,
|
'to' => $this->user->email,
|
||||||
'name' => $this->user->name,
|
'name' => $this->user->name,
|
||||||
]);
|
]);
|
||||||
|
@ -13,63 +13,53 @@ class InitialMails {
|
|||||||
'body' => file_get_contents('data/mail-templates/user-signup-es.html')
|
'body' => file_get_contents('data/mail-templates/user-signup-es.html')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'USER_EDIT_PASSWORD' => [
|
'USER_PASSWORD' => [
|
||||||
'en' => [
|
'en' => [
|
||||||
'subject' => 'Password edited - OpenSupports',
|
'subject' => 'Password edited - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-edit-password-en.html')
|
'body' => file_get_contents('data/mail-templates/user-edit-password-en.html')
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'subject' => 'Contraseña a sido cambiada - OpenSupports',
|
'subject' => 'Contraseña a cambiado - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-edit-password-es.html')
|
'body' => file_get_contents('data/mail-templates/user-edit-password-es.html')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'USER_EDIT_EMAIL' => [
|
'USER_EMAIL' => [
|
||||||
'en' => [
|
'en' => [
|
||||||
'subject' => 'Email edited - OpenSupports',
|
'subject' => 'Email edited - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-edit-email-en.html')
|
'body' => file_get_contents('data/mail-templates/user-edit-email-en.html')
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'subject' => 'Tu correo electronico a sido cambiada - OpenSupports',
|
'subject' => 'Email a cambiado - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-edit-email-es.html')
|
'body' => file_get_contents('data/mail-templates/user-edit-email-es.html')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'PASSWORD_FORGOT' => [
|
'PASSWORD_FORGOT' => [
|
||||||
'en' => [
|
'en' => [
|
||||||
'subject' => 'forgotten password - OpenSupports',
|
'subject' => 'Recover password - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-password-forgot-en.html')
|
'body' => file_get_contents('data/mail-templates/user-password-forgot-en.html')
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'subject' => 'Contraseña olvidada - OpenSupports',
|
'subject' => 'Recuperar password - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-password-forgot-es.html')
|
'body' => file_get_contents('data/mail-templates/user-password-forgot-es.html')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'PASSWORD_RECOVERED' => [
|
|
||||||
'en' => [
|
|
||||||
'subject' => 'Recover Password - OpenSupports',
|
|
||||||
'body' => file_get_contents('data/mail-templates/user-recovered-password-en.html')
|
|
||||||
],
|
|
||||||
'es' => [
|
|
||||||
'subject' => 'Recuperación de contraseña - OpenSupports',
|
|
||||||
'body' => file_get_contents('data/mail-templates/user-recovered-password-es.html')
|
|
||||||
]
|
|
||||||
],
|
|
||||||
'USER_SYSTEM_DISABLED' => [
|
'USER_SYSTEM_DISABLED' => [
|
||||||
'en' => [
|
'en' => [
|
||||||
'subject' => 'Account has been deleted - OpenSupports',
|
'subject' => 'Access system changed - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-system-disabled-en.html')
|
'body' => file_get_contents('data/mail-templates/user-system-disabled-en.html')
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'subject' => 'cuanta borrada - OpenSupports',
|
'subject' => 'Sistema de acceso cambiado - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-system-disabled-es.html')
|
'body' => file_get_contents('data/mail-templates/user-system-disabled-es.html')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'USER_SYSTEM_ENABLED' => [
|
'USER_SYSTEM_ENABLED' => [
|
||||||
'en' => [
|
'en' => [
|
||||||
'subject' => 'account has been created - OpenSupports',
|
'subject' => 'Account created - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-system-enabled-en.html')
|
'body' => file_get_contents('data/mail-templates/user-system-enabled-en.html')
|
||||||
],
|
],
|
||||||
'es' => [
|
'es' => [
|
||||||
'subject' => 'se te ha creado una cuenta - OpenSupports',
|
'subject' => 'Cuenta creada - OpenSupports',
|
||||||
'body' => file_get_contents('data/mail-templates/user-system-enabled-es.html')
|
'body' => file_get_contents('data/mail-templates/user-system-enabled-es.html')
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -1,3 +1,356 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hi {{name}} , OpenSupports' team wanna tell you that you email has been changed to {{newemail}}
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Email changed
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hi, {{name}}. We want to inform you that your email has changed to {{newemail}} from your customer panel.
|
||||||
|
</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,3 +1,356 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hola {{name}} el equipo de OpenSupports te informa que tu correo electronico ha sido cambiado a {{newemail}}
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Email a cambiado
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hola, {{name}}. Queremos informate que tu email ha cambiado a {{newemail}} desde el panel de control.
|
||||||
|
</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,3 +1,356 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hello {{name}} , OpenSupports' team wanna tell you that your password has been changed
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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/wp-content/uploads/2017/03/logo_1.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">
|
||||||
|
Password changed
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hi, {{name}}. We want to inform you that your password has changed from your customer panel.
|
||||||
|
</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,3 +1,356 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hola , {{name}} el equipo de OpenSupports te informa que tu contraseña ha sido cambiada
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Contraseña cambiada
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hola, {{name}}. Queremos informate que tu contraseña a sido cambiada desde el panel de usuario.
|
||||||
|
</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,3 +1,389 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hi {{name}} , for change your password you most put in this code {{token}}
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Recover password
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hi, {{name}}. You have requested to recover your password.
|
||||||
|
</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;">
|
||||||
|
Use this code in {{url}}/recover-password?email={{email}}&token={{token}} or click the button below.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{token}}
|
||||||
|
</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={{email}}&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={{email}}&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>
|
@ -1,4 +1,389 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hola {{name}} , has requerido un cambio de contraseña
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
Usa el siguiente codigo para confirmar tu cambio {{token}}
|
<head>
|
||||||
</div>
|
<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">
|
||||||
|
Recuperar contraseña
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hola, {{name}}. Has requerido recuperar tu contraseña.
|
||||||
|
</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;">
|
||||||
|
Usá este codigo en {{url}}/recover-password?email={{email}}&token={{token}} o hacé click en el botón de abajo.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{token}}
|
||||||
|
</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={{email}}&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;">Recuperar contraseña</center>
|
||||||
|
</v:roundrect>
|
||||||
|
<![endif]--><a class="button-mobile" target="_blank" href="{{url}}/recover-password?email={{email}}&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;">Recuperar contraseña</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,3 +0,0 @@
|
|||||||
<div>
|
|
||||||
Hi {{name}} , OpenSupports' team wanna inform you that you password has been changed successfully.
|
|
||||||
</div>
|
|
@ -1,3 +0,0 @@
|
|||||||
<div>
|
|
||||||
Hola {{name}} , el equipo de OpenSupports te informa que tu contraseña ha sido cambiada.
|
|
||||||
</div>
|
|
@ -303,7 +303,7 @@
|
|||||||
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
<table cellpadding="0" cellspacing="0" width="600" class="w320">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="vertical-align: middle;">
|
<td style="vertical-align: middle;">
|
||||||
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/wp-content/uploads/2017/03/logo_1.png" alt="logo"></a>
|
<a href="http://www.opensupports.com/" target="_blank"><img height="47" src="http://opensupports.com/logo.png" alt="logo"></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -353,9 +353,9 @@
|
|||||||
<div><!--[if mso]>
|
<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">
|
<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/>
|
<w:anchorlock/>
|
||||||
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Shop Now</center>
|
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">Verify Account</center>
|
||||||
</v:roundrect>
|
</v:roundrect>
|
||||||
<![endif]--><a class="button-mobile" href="{{url}}/verify-token/{{to}}/{{verificationToken}}"
|
<![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>
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -1,6 +1,389 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Bienvenido, {{name}} a nuestro centro de soporte,
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
tu email es {{to}},
|
<head>
|
||||||
podes verificar tu usuatio entrando en este link
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
http://dev3.opensupports.com/verify-token/{{to}}/{{verificationToken}}
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
</div>
|
<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">
|
||||||
|
Verifica tu cuenta
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Bienvenido a nuestro contro de soporte, {{name}}!. Necesitamos que verifiques este email para poder acceder a tu cuenta.
|
||||||
|
</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;">
|
||||||
|
Usá este código en {{url}}/verify-token/{{email}}/{{verificationToken}} o hacé click en el botón de abajo.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{verificationToken}}
|
||||||
|
</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;">Verificar cuenta</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;">Verificar cuenta</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,3 +1,390 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
Hi {{name}} the system user has been deleted this is the list of your tickets {{tickets}}
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Access system changed
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hello, {{name}}. The system to access tickets has changed.
|
||||||
|
</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;">
|
||||||
|
You can access and see to your tickets by using your email and the ticket number.
|
||||||
|
Click in the button below to see your tickets.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{tickets}}
|
||||||
|
</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>
|
@ -1,3 +1,390 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
hoola {{name}} the system user has been deleted this is the list of your tickets {{tickets}}
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Sistema de acceso cambiado
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hola, {{name}}. El sistema para acceder a los tickets ha cambiado.
|
||||||
|
</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;">
|
||||||
|
Ahora podes acceder a los tickets usando tu email y el numero de ticket.
|
||||||
|
Hacé click en el botón de abajo para poder ver los tickets.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{tickets}}
|
||||||
|
</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;">Revisar 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;">Revisar 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>
|
@ -1,4 +1,390 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
hi {{name}} the system user has been Created this is your new password {{password}} , you can change it if you want
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
maxi puto
|
<head>
|
||||||
</div>
|
<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">
|
||||||
|
Account created
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hello, {{name}}. We have created an account where you can access the tickets you have sent us.
|
||||||
|
</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;">
|
||||||
|
You can access your account by using this email <i>({{to}})</i> and password below.
|
||||||
|
Please change the password as soon as you log in.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{password}}
|
||||||
|
</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,3 +1,390 @@
|
|||||||
<div>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
hoola {{name}} el sistema de usuarios se ha creado este es tu contra {{password}} , puedes cambairla si quieres
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
</div>
|
<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">
|
||||||
|
Cuenta creada
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="free-text">
|
||||||
|
Hola, {{name}}. Hemos creado una cuenta donde puedes acceder a los tickets que nos has enviado.
|
||||||
|
</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;">
|
||||||
|
Puedes acceder usando tu email <i>({{to}})</i> y el la contraseña de abajo.
|
||||||
|
Por favor, cambia tu contraseña tan pronto como ingreses al panel de usuario.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="code-block">
|
||||||
|
{{password}}
|
||||||
|
</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;">Acceder a cuenta</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;">Acceder a cuenta</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>
|
Loading…
x
Reference in New Issue
Block a user