- fixing outgoing mails and added some documentation.

4.0.x
Kjartan Mannes 2002-06-09 17:24:42 +00:00
parent 3955d6836a
commit 167955dfb0
2 changed files with 18 additions and 2 deletions

View File

@ -246,7 +246,15 @@ function user_mail($mail, $subject, $message, $header) {
return user_mail_wrapper($mail, $subject, $message, $header);
}
else {
return mail($mail, $subject, $message, $header);
/*
** Note: if you are having problems with sending mail, or mails look wrong
** when they are recieved you may have to modify the str_replace to suit
** your systems.
** - \r\n will work under dos and windows.
** - \n will work for linux, unix and BSDs.
** - \r will work for macs.
*/
return mail($mail, $subject, str_replace("\r", "", $message), $header);
}
}

View File

@ -246,7 +246,15 @@ function user_mail($mail, $subject, $message, $header) {
return user_mail_wrapper($mail, $subject, $message, $header);
}
else {
return mail($mail, $subject, $message, $header);
/*
** Note: if you are having problems with sending mail, or mails look wrong
** when they are recieved you may have to modify the str_replace to suit
** your systems.
** - \r\n will work under dos and windows.
** - \n will work for linux, unix and BSDs.
** - \r will work for macs.
*/
return mail($mail, $subject, str_replace("\r", "", $message), $header);
}
}