OGB optimized landing page

OGB map fixes
This commit is contained in:
Exodus 4D
2015-09-01 23:27:41 +02:00
committed by Exodus4D
parent e8bb3b29e4
commit ae60b4122a
16 changed files with 247 additions and 118 deletions

View File

@@ -33,9 +33,12 @@ class MailController extends \SMTP{
*/
public function sendRegistrationKey($to, $msg){
$this->set('To', '"<' . $to . '>');
$this->set('From', '"PATHFINDER" <' . Controller::getEnvironmentData('SMTP_FROM') . '>');
$this->set('Subject', 'PATHFINDERR - Registration Key');
$this->set('To', '<' . $to . '>');
$this->set('From', 'Pathfinder <' . Controller::getEnvironmentData('SMTP_FROM') . '>');
$this->set('Subject', 'Registration Key');
$this->set('Error-To', '<' . Controller::getEnvironmentData('SMTP_ERROR') . '>');
$this->set('MIME-Version', '1.0');
$this->set('Content-Type', 'text/html; charset=ISO-8859-1');
$status = $this->send($msg);
return $status;