Hi all,
I have a minor problem, that hopefully someone can help with.
I am using a php mail class to send html mails to a load of addresses. So it send like this...
return mail($this->to, $this->subject, "", $email);
but now my ISP say I need to send it from my cgi-bin (otherwise any bouned emails get returned to them instead of me)
so I can easily write a perl script to do the sending, but how do I call it and pass the variables accross from php?
I assume virtual() will be involved somewhere, but I can't seem to get the syntax right.
Thanks in advance
Jules