I am currently with a host that has disabled the PHP mail() function due to abuse. I need to send registration emails from scripts. What would you recommend as another way to send an email through a web script? It can be in any programming language so long as it's highly portable (works on as many web servers as possible). It must also not require any configuration with the webserver, etc. I want a user to be able to upload the script, run it, and have an email in their inbox. I have already tried PHPmailer with no luck. Apparently it also uses the mail() function, unless I can configure it another way? Any ideas?
Thanks!