Lines Matching refs:message
103 char *to=NULL, *message=NULL; in PHP_FUNCTION() local
112 …meters(ZEND_NUM_ARGS(), "sss|SS", &to, &to_len, &subject, &subject_len, &message, &message_len, &h… in PHP_FUNCTION()
119 MAIL_ASCIIZ_CHECK(message, message_len); in PHP_FUNCTION()
174 …if (php_mail(to_r, subject_r, message, headers_trimmed ? ZSTR_VAL(headers_trimmed) : NULL, extra_c… in PHP_FUNCTION()
197 void php_mail_log_crlf_to_spaces(char *message) { in php_mail_log_crlf_to_spaces() argument
202 char *p = message; in php_mail_log_crlf_to_spaces()
208 void php_mail_log_to_syslog(char *message) { in php_mail_log_to_syslog() argument
211 php_syslog(LOG_NOTICE, "%s", message); in php_mail_log_to_syslog()
216 void php_mail_log_to_file(char *filename, char *message, size_t message_size) { in php_mail_log_to_file() argument
221 php_stream_write(stream, message, message_size); in php_mail_log_to_file()
266 PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd) in php_mail() argument
342 …if (TSendMail(INI_STR("SMTP"), &tsm_err, &tsm_errmsg, hdr, subject, to, message, NULL, NULL, NULL)… in php_mail()
405 fprintf(sendmail, "\n%s\n", message); in php_mail()