diff options
author | Derick Rethans <derick@php.net> | 2001-02-05 21:30:29 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-02-05 21:30:29 +0000 |
commit | cf11a4fbc885d922897b498d4bed6d64b0bf1362 (patch) | |
tree | ca3d18c45a1f38f0e4059c276fa235860b54183d /ext/standard/php_mail.h | |
parent | b5875d9d7cb3ce6d72b827c5707e4ac7b4b80a56 (diff) | |
download | php-git-cf11a4fbc885d922897b498d4bed6d64b0bf1362.tar.gz |
- Added a new parameter to mail() which appends aditional command line
parameters to the mail program. This is usefull to set the From headers
correctly with the -f parameter to sendmail p.e.
@- Added a new parameter to mail() which appends aditional command line
@ parameters to the mail program. (Derick)
Diffstat (limited to 'ext/standard/php_mail.h')
-rw-r--r-- | ext/standard/php_mail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_mail.h b/ext/standard/php_mail.h index 81c36ea7ba..2869776fe0 100644 --- a/ext/standard/php_mail.h +++ b/ext/standard/php_mail.h @@ -26,7 +26,7 @@ PHP_FUNCTION(mail); PHP_FUNCTION(ezmlm_hash); PHP_MINFO_FUNCTION(mail); -extern int php_mail(char *to, char *subject, char *message, char *headers); +extern int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd); #endif |