Currently, I'm using a formmail that allows me to send an e-mail from my site to one of my e-mail accounts... I use a place called javascript.nu
(not that relevant code, really, so might skip this)
Code:<FORM ACTION="http://www.javascript.nu/cgi4free/formmail/send.pl" METHOD="post">
<INPUT TYPE="hidden" NAME="to" VALUE="[email protected]">
<INPUT TYPE="hidden" NAME="subject" VALUE="E-mail from mailform">
<INPUT TYPE="hidden" NAME="redirect" VALUE="http://www.JavaScript.nu/">
<TABLE BORDER="2" CELLPADDING=0 CELLSPACING=0>
<TR><TD><TABLE BORDER="0" CELLPADDING=2 CELLSPACING=0 BGCOLOR="#eeeeee">
<TR BGCOLOR="#cccccc"><TD>Your e-mail:</TD><TD><INPUT TYPE="text" NAME="from"></TD></TR>
<TR><TD COLSPAN="2"><TEXTAREA COLS="39" ROWS="4" NAME="msg"></TEXTAREA></TD></TR>
<TR><TD COLSPAN="2"><INPUT TYPE="submit" VALUE="Send Mail"></TD></TR>
</TABLE></TD></TR>
</TABLE>
</FORM>
In other words, it's being redirected and sent through this free cgi (placed here:
Code:http://www.javascript.nu/cgi4free/formmail/send.pl
)
But, as I'm part of a community elsewhere where it is desirable that membership applications are sent to more than one e-mail account, I'm wondering..is there a place where I can get something similar to what I already have - only that it's possible to sent this e-mail to, say, three of four persons - or some sort of script?