Fix spacing in the ugly e-mails. I want these changed to text/plain! :(

This commit is contained in:
reed%reedloden.com 2006-10-10 22:22:34 +00:00
Родитель 7af6e3a6d9
Коммит 9aed7c6843
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -32,11 +32,11 @@ class MailComponent extends Object {
if (array_key_exists('type', $params)) {
switch($params['type']) {
case "act":
$this->message = $this->head."<br/>\nThank you for registering! To activate your account <a href=\"".$params['link']."\">click here</a>, or paste the link below into your browser<br/>".$params['link'].$this->foot;
$this->message = $this->head."<br/>\nThank you for registering! To activate your account, <a href=\"".$params['link']."\">click here</a> or paste the link below into your browser:<br/> ".$params['link'].$this->foot;
break;
case "prec":
$this->message = $this->head."<br/>\nTo reset your password <a href=\"".$params['link']."\">click here</a>, or paste the link below into your browser<br/>".$params['link'].$this->foot;
$this->message = $this->head."<br/>\nTo reset your password, <a href=\"".$params['link']."\">click here</a> or paste the link below into your browser:<br/> ".$params['link'].$this->foot;
break;
case "invite":
@ -76,4 +76,4 @@ class MailComponent extends Object {
mail($this->to, $this->subject, $this->message, $this->make_headers(), $this->make_additional_parameters());
}
}
?>
?>