RE: Sending to multiple e-mail addresses from form - 4/13/2001 20:41:00
(time to jump into the html tab)If you're using something like this: <FORM METHOD=POST ENCTYPE="text/plain" ACTION="mailto:feedback@domain.com"> ... you form fields in here ... </FORM> ... and you want a second person copied in, you have a choice. Either: 1 - several people in the To field (all visible) ... the [ ; ] being the important bit ACTION="mailto:feedback@domain.com;otherperson@domain.com;third.person@domain.com"> 2 - someone copied in ... the [ ?cc= ] being the important bit ACTION="mailto:feedback@domain.com?cc=otherperson@domain.com"> 3 - someone blind copied in ... the [ ?bcc= ] being the important bit ACTION="mailto:feedback@domain.com?bcc=otherperson@domain.com"> 4 - mixing and matching? you can to an extent. for example, several 'to's and several 'cc's ACTION="mailto:email1@dom.com;email2@dom.com?cc=email3@dom.com;email4@dom.com"> ... but someone in 'to' 'cc' and 'bcc' - just doesn't work?! worth testing though, because if you mix and match and get it wrong - the form just doesn't post at all! I've not tested this 'several e-mails' thing in NN as I have no clue what that thing does with e-mail, other than I know form data gets sent?! [ big thanks and a <HUGE >recommendation</HUGE> to Elizabeth Castro's 'HTML for the world wide web' ISBN 0-201-35493-4 ... if this book was pocket sized, then it would be a lot more dog-eared and battered than it already is! ... and then there is her book on PERL & CGI ] ___ cap ------------------ http://www.laker-media.co.uk ... web design & photo solutions http://www.laker-images.co.uk ... travel, abstract & social imagery
|