-2

Main target is to implement instant annonymous e-mail sending from web by client side script. Don't know if it`s event possible, but maybe you know some workarounds, or maybe some e-mail providers allow to send annonymous e-mails by posting data or have some API for that..

Found how to send mail to gmail by javascript, but problem is you need to have gmail account..

Thanks!

Janis Rudovskis
  • 193
  • 3
  • 9

1 Answers1

-1

You could have a server-side script set up to watch for HTTP requests that contain a special key or API that would send an email based on hard-coded parameters, or parameters the request contain. On the client-side, you would just set up an AJAX request to call this server-side script. You could use Perl, PHP, Python, etc. to accomplish this.

Jiskiras
  • 84
  • 6