98 lines
4.2 KiB
PHP
98 lines
4.2 KiB
PHP
<?php
|
|
defined($security_key) or exit;
|
|
//------------------------------------------
|
|
// Content Email
|
|
//------------------------------------------
|
|
$register_user_subject = 'CustomerPortal - Registration';
|
|
$register_user_header = 'Dear customer';
|
|
$register_user_text = 'Thanks for your registration. Based on your product registration we herewith provide you access to our online firmware update capability';
|
|
$register_user_credential_text = 'To update your product click on the button below and use username <b>'.software_update_user.'</b> and password <b>'.software_update_pw.'</b> to login';
|
|
$register_user_closure = 'This is a generic account and cannot be changed.';
|
|
|
|
//------------------------------------------
|
|
// Content Email
|
|
//------------------------------------------
|
|
$subject = $register_user_subject;
|
|
|
|
$message = '
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>' . $subject . '</title>
|
|
<style>
|
|
@media screen and (max-width: 600px) {
|
|
.content {
|
|
width: 100% !important;
|
|
display: block !important;
|
|
padding: 10px !important;
|
|
}
|
|
.header, .body, .footer {
|
|
padding: 20px !important;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="font-family: Arial, sans-serif">
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td align="center" style="padding: 20px;">
|
|
<table class="content" width="600" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border: 1px solid #cccccc;">
|
|
<!-- Header -->
|
|
<tr>
|
|
<td class="header" style="background-color:#005655; padding: 40px; text-align: center; color: white; font-size: 24px;">
|
|
CustomerPortal
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Body -->
|
|
<tr>
|
|
<td class="body" style="padding: 40px; text-align: left; font-size: 16px; line-height: 1.6;">
|
|
' . $register_user_header . ',
|
|
<br>
|
|
<br>
|
|
'.$register_user_text.'
|
|
<br>
|
|
<br>
|
|
'.$register_user_credential_text.'
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Call to action Button -->
|
|
<tr>
|
|
<td style="padding: 0px 40px 0px 40px; text-align: center;">
|
|
<!-- CTA Button -->
|
|
<table cellspacing="0" cellpadding="0" style="margin: auto;">
|
|
<tr>
|
|
<td align="center" style="background-color: #008685; padding: 10px 20px; border-radius: 5px;">
|
|
<a href="https://' . $portalURL . '" target="_blank" style="color: #ffffff; text-decoration: none; font-weight: bold;">Goto Portal</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="body" style="padding: 40px; text-align: left; font-size: 16px; line-height: 1.6;">
|
|
' . $register_user_closure . '
|
|
<br>
|
|
<br>
|
|
Kind regards,
|
|
<br>
|
|
<br>
|
|
Service team
|
|
<br>
|
|
</td>
|
|
</tr>
|
|
<!-- Footer -->
|
|
<tr>
|
|
<td class="footer" style="background: url(\'https://'.$portalURL.emaillogo.'\');background-position: center center;background-repeat:no-repeat;background-size:contain;background-color: #005655; padding: 40px;">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
'; |