Searched refs:sendmail (Results 1 – 11 of 11) sorted by relevance
/PHP-7.0/ext/standard/ |
H A D | mail.c | 272 FILE *sendmail; in php_mail() local 372 sendmail = popen_ex(sendmail_cmd, "wb", NULL, NULL); in php_mail() 378 sendmail = popen(sendmail_cmd, "w"); in php_mail() 384 if (sendmail) { in php_mail() 388 pclose(sendmail); in php_mail() 399 fprintf(sendmail, "To: %s\n", to); in php_mail() 400 fprintf(sendmail, "Subject: %s\n", subject); in php_mail() 402 fprintf(sendmail, "%s\n", hdr); in php_mail() 404 fprintf(sendmail, "\n%s\n", message); in php_mail() 405 ret = pclose(sendmail); in php_mail()
|
/PHP-7.0/ext/standard/tests/mail/ |
H A D | mail_variation1.phpt | 2 Test mail() function : variation invalid program for sendmail
|
/PHP-7.0/ext/imap/ |
H A D | php_imap.c | 3947 FILE *sendmail; in _php_imap_mail() 4077 sendmail = popen(INI_STR("sendmail_path"), "w"); in _php_imap_mail() 4078 if (sendmail) { in _php_imap_mail() 4079 if (rpath && rpath[0]) fprintf(sendmail, "From: %s\n", rpath); in _php_imap_mail() 4080 fprintf(sendmail, "To: %s\n", to); in _php_imap_mail() 4081 if (cc && cc[0]) fprintf(sendmail, "Cc: %s\n", cc); in _php_imap_mail() 4082 if (bcc && bcc[0]) fprintf(sendmail, "Bcc: %s\n", bcc); in _php_imap_mail() 4083 fprintf(sendmail, "Subject: %s\n", subject); in _php_imap_mail() 4085 fprintf(sendmail, "%s\n", headers); in _php_imap_mail() 4087 fprintf(sendmail, "\n%s\n", message); in _php_imap_mail() [all …]
|
/PHP-7.0/win32/build/ |
H A D | config.w32 | 163 registry.c select.c sendmail.c time.c winutil.c wsyslog.c globals.c getrusage.c");
|
/PHP-7.0/ |
H A D | php.ini-development | 1024 ; http://php.net/sendmail-from 1027 ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 1028 ; http://php.net/sendmail-path 1032 ; to the sendmail binary. These parameters will always replace the value of
|
H A D | php.ini-production | 1024 ; http://php.net/sendmail-from 1027 ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). 1028 ; http://php.net/sendmail-path 1032 ; to the sendmail binary. These parameters will always replace the value of
|
H A D | configure.in | 337 … PHP_ADD_SOURCES(win32, sendmail.c, -I$CFLAGS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1, PHP_GLOBAL_OBJS) 420 dnl Find sendmail binary
|
H A D | acinclude.m4 | 2066 dnl Search for the sendmail binary 2070 AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:$PHP_ALT_PATH)
|
H A D | NEWS | 449 . Fixed bug #74510 (win32/sendmail.c anchors CC header but not BCC).
|
/PHP-7.0/sapi/fpm/ |
H A D | www.conf.in | 415 ;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
|
/PHP-7.0/ext/fileinfo/tests/ |
H A D | magic | 18296 # sendmail: file(1) magic for sendmail config files 18306 # sendmail: file(1) magic for sendmail m4(1) files 18309 # i.e. files in /usr/share/sendmail/cf/ 18311 0 string divert(-1)\n sendmail m4 text file
|
Completed in 106 milliseconds