- fixing outgoing mails and added some documentation.
parent
3955d6836a
commit
167955dfb0
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue