Is it possible to send form results to two separate email addresses at the same time? My form is working A-ok - I would just like to have the results emailed to another individual to save forwarding. I'm using FrontPage 97.
Thank you-
Ginger B.
ok then the only other suggestion i can give is to use pure asp coding to do this, depending on the server capabilities, you can create and send emails without front page server extensions
ok try the following code, in your page, but you will need to change some info
Dim MyBody
Dim MyCDONTSMail
Set MyCDONTSMail = server.CreateObject("CDONTS.NewMail"
MyCDONTSMail.From= "(address of sender)"
MyCDONTSMail.To= "me@you.com;you@me.com" '(change email addresses)
MyCDONTSMail.Subject="(subject)"
MyBody = "(what you want in the body)"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
as i said some changes will need to be made... but you can try it for an example, if it works great.....
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.