Search found 1 match

by 91change
Wed Oct 08, 2008 12:52 pm
Forum: PHP - Code
Topic: php + exim
Replies: 0
Views: 3688

php + exim

i found a script on internet . The script is in php and used to send mails . It works fine for me $to = escapeshellcmd($to); $from = escapeshellcmd($from); $exim = popen('/path/to/exim -f ' . $from . ' ' . $to, 'w'); fwrite($exim, $message); pclose($exim); Here i can specify to and from field . But ...