Roy
Thu Aug 21 15:16:55 CDT 2003
Jim,
Could you use some sort of script that could handle putting a certain
email address for the objMailer.To value depending upon the selection made
in a drop down box in the form? If so, how? If not, how you would you go
about accomplishing that?
Thanks,
Roy
"Jim Buyens" <buyensj@interlacken.com> wrote in message
news:0e5701c36774$06854390$a001280a@phx.gbl...
> >-----Original Message-----
> >I am hoping someone has done this before...
> >
> >I have a list serve that I would like to make a web front
> >end to for signing up. The list serve is configured to
> >email the subscriber for email confirmation.
> >
> >I would like the form to ask for name, email. Take this
> >information, and have Microsoft Front Page send the email
> >to the list serve, in the following format:
> >
> >SUBSCRIBE my_list Joe Smoe (Note List Name from FP is
> >my_list and name is
> >Joe Smoe)
> >
> >Unfortunately, the problems I am seeing is that the list
> >serve replies to the email it receives, namely the front
> >page server (webmaster account) and the verify process
> >can not occur. I think I can get around this by either
> >having the form email an link to the person at the email
> address specified.
> >The link could be to a page that directly submits the
> >registration without any validation.
> >
> >How can I automatically send an email to a person at an
> >address that they specify in a form? Can I customize
> >this email with specific information (like a Dear Joe
> >Smoe)?
> >
> >My goal is to avoid having people send emails that
> >require exact syntax for signing up for the list serve.
> >
> >Any help would be appreciated.
>
> Typically you have to program this in ASP, ASP.NET, or
> whatever. This isn't difficult, except that there are
> about a bazillion different tools in use. Here's the usual
> drill.
>
> set objMailer = server.createobject("..whatever..")
> objMailer.Subject = "Subscribe"
> objMailer.From = "me@myplace.com"
> objMailer.To = "listserv@whatever.com"
> objMailer.ReplyTo = "me@myplace.com"
> objmailer.Body = "..Your text goes here.."
> objMailer.SmtpServer = "mail.whatever.com"
> objMailer.Send
>
> The exact object name to create and the exact property
> names to assign will, or course, vary with the mailer
> object your hosting provider installed. You can generally
> find documentation on the provider's support page.
>
> The Microsoft object for sending mail from an ASP page is
> CDONTS.NewMail. However, because it requrires running
> Microsoft's SMTP server, it isn't very popular.
>
> ASP.NET has a System.Web.Mail namespace that doesn't
> require the presence of Microsoft's SMTP server. Most
> providers who support ASP.NET therefore support this
> approach.
>
> Most of these objects also handle attachments and HTML-
> formatted mail.
>
> Jim Buyens
> Microsoft FrontPage MVP
> buyensj@interlacken.com
>
http://www.interlacken.com
> Author of:
> *------------------------------------------------------*
> |\----------------------------------------------------/|
> || Microsoft Office FrontPage 2003 Inside Out ||
> || Microsoft FrontPage Version 2002 Inside Out ||
> || Web Database Development Step by Step .NET Edition ||
> || Troubleshooting Microsoft FrontPage 2002 ||
> || Faster Smarter Beginning Programming ||
> || (All from Microsoft Press) ||
> |/----------------------------------------------------\|
> *------------------------------------------------------*
>