Lines Matching refs:message
103 char *to=NULL, *message=NULL, *headers=NULL, *headers_trimmed=NULL; in PHP_FUNCTION() local
111 …D_NUM_ARGS() TSRMLS_CC, "sss|ss", &to, &to_len, &subject, &subject_len, &message, &message_len, &h… in PHP_FUNCTION()
118 MAIL_ASCIIZ_CHECK(message, message_len); in PHP_FUNCTION()
173 if (php_mail(to_r, subject_r, message, headers_trimmed, extra_cmd TSRMLS_CC)) { in PHP_FUNCTION()
196 void php_mail_log_crlf_to_spaces(char *message) { in php_mail_log_crlf_to_spaces() argument
201 char *p = message; in php_mail_log_crlf_to_spaces()
207 void php_mail_log_to_syslog(char *message) { in php_mail_log_to_syslog() argument
210 php_syslog(LOG_NOTICE, "%s", message); in php_mail_log_to_syslog()
215 void php_mail_log_to_file(char *filename, char *message, size_t message_size TSRMLS_DC) { in php_mail_log_to_file() argument
220 php_stream_write(stream, message, message_size); in php_mail_log_to_file()
265 PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd TSRMLS_D… in php_mail() argument
340 …if (TSendMail(INI_STR("SMTP"), &tsm_err, &tsm_errmsg, hdr, subject, to, message, NULL, NULL, NULL … in php_mail()
403 fprintf(sendmail, "\n%s\n", message); in php_mail()