Hello All,

I have created a form in FP XP and I have a question regarding emailing
the results of this form. Using FP extensions I have the results of this
form E-mailed to a specific address. What I would like to know is if I can
have the user enter their a-mail address on the form and when the form sends
itself it will look like the form came from their a-mail address that was
entered on the form. As it sits right now when the a-mail comes it looks
like it was sent from the a-mail address that I setup in IIS 5.0 for sending
mail.

Any help on this matter would be greatly appreciated.

Re: Form Results by MD

MD
Tue Dec 09 13:18:41 CST 2003

Hi Brian,

Sorry but that is not possible.

--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com
Our latest products "At Your Command" and IncludeASP
http://www.websunlimited.com/order/Product/AYC/ayc.htm
http://www.websunlimited.com/order/product/includeASP/includeASP.htm
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at mvpga@microsoft.com

"Brian F." <Brianfitch1972@yahoo.com> wrote in message
news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> Hello All,
>
> I have created a form in FP XP and I have a question regarding
emailing
> the results of this form. Using FP extensions I have the results of this
> form E-mailed to a specific address. What I would like to know is if I
can
> have the user enter their a-mail address on the form and when the form
sends
> itself it will look like the form came from their a-mail address that was
> entered on the form. As it sits right now when the a-mail comes it looks
> like it was sent from the a-mail address that I setup in IIS 5.0 for
sending
> mail.
>
> Any help on this matter would be greatly appreciated.
>
>



Re: Form Results by Kevin

Kevin
Tue Dec 09 13:23:36 CST 2003

You can certainly do this. However, it will require some custom server-side
programming, and may require re-configuring your SMTP server as well. You
would have to write your own ASP/ASP.Net (or whatever other server-side
technology is available on your server) program to handle the form post. If
ASP, it woulkd use CDONTS to send the email. However, most SMTP servers
disallow relaying, which is the sending of emails from other domains. If so,
you would need to re-configure your SMTP server to allow relaying.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Brian F." <Brianfitch1972@yahoo.com> wrote in message
news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> Hello All,
>
> I have created a form in FP XP and I have a question regarding
emailing
> the results of this form. Using FP extensions I have the results of this
> form E-mailed to a specific address. What I would like to know is if I
can
> have the user enter their a-mail address on the form and when the form
sends
> itself it will look like the form came from their a-mail address that was
> entered on the form. As it sits right now when the a-mail comes it looks
> like it was sent from the a-mail address that I setup in IIS 5.0 for
sending
> mail.
>
> Any help on this matter would be greatly appreciated.
>
>



Re: Form Results by Mike

Mike
Tue Dec 09 14:12:00 CST 2003

I am doing this with the following code.I have
a form that gets filled out. When they submit it,
it then goes to a 'submit' page that the client
never sees. I have the submit page record the
info into a dbase then send an e-mail and it
shows that it came from them that way I can
reply to it and send them a message.

Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = "you@yourdomain.com"
objCDOMail.From = (request.form("ClientEMail"))
objCDOMail.Subject = Whatever subject you want.
objCDOMail.Body = Whatever body you want.
objCDOMail.Send
Set objCDOMail = Nothing

Mikeal


"Brian F." <Brianfitch1972@yahoo.com> wrote in message
news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> Hello All,
>
> I have created a form in FP XP and I have a question regarding
emailing
> the results of this form. Using FP extensions I have the results of this
> form E-mailed to a specific address. What I would like to know is if I
can
> have the user enter their a-mail address on the form and when the form
sends
> itself it will look like the form came from their a-mail address that was
> entered on the form. As it sits right now when the a-mail comes it looks
> like it was sent from the a-mail address that I setup in IIS 5.0 for
sending
> mail.
>
> Any help on this matter would be greatly appreciated.
>
>



Re: Form Results by MD

MD
Tue Dec 09 17:44:14 CST 2003

With the intrinsic FrontPage email components I should have added ;>)

--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com
Our latest products "At Your Command" and IncludeASP
http://www.websunlimited.com/order/Product/AYC/ayc.htm
http://www.websunlimited.com/order/product/includeASP/includeASP.htm
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at mvpga@microsoft.com

"MD WebsUnlimited.com" <none@none.com> wrote in message
news:%23aFmElovDHA.3496@TK2MSFTNGP11.phx.gbl...
> Hi Brian,
>
> Sorry but that is not possible.
>
> --
> Mike -- FrontPage MVP '97 - '02
> http://www.websunlimited.com
> Our latest products "At Your Command" and IncludeASP
> http://www.websunlimited.com/order/Product/AYC/ayc.htm
> http://www.websunlimited.com/order/product/includeASP/includeASP.htm
> --------------------------------------------------------------------------
--
> --------------------
> If you think I'm doing a good job, let MS know at mvpga@microsoft.com
>
> "Brian F." <Brianfitch1972@yahoo.com> wrote in message
> news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> > Hello All,
> >
> > I have created a form in FP XP and I have a question regarding
> emailing
> > the results of this form. Using FP extensions I have the results of
this
> > form E-mailed to a specific address. What I would like to know is if I
> can
> > have the user enter their a-mail address on the form and when the form
> sends
> > itself it will look like the form came from their a-mail address that
was
> > entered on the form. As it sits right now when the a-mail comes it
looks
> > like it was sent from the a-mail address that I setup in IIS 5.0 for
> sending
> > mail.
> >
> > Any help on this matter would be greatly appreciated.
> >
> >
>
>



Re: Form Results by Philippe

Philippe
Sat Dec 13 11:18:13 CST 2003

Mike,
Could this be done with a 'submit' page that the client never sees and a
print button on the same form as well? That is - sending the results via
email AND having the client printing the form for review and signing. This
would be the best and that is what we are looking into at this time.

Regards

Philippe Berard
Philippe.Berard@chukchansigold.com


"Mike" <mike4532> wrote in message
news:ukIBmBpvDHA.2440@TK2MSFTNGP12.phx.gbl...
> I am doing this with the following code.I have
> a form that gets filled out. When they submit it,
> it then goes to a 'submit' page that the client
> never sees. I have the submit page record the
> info into a dbase then send an e-mail and it
> shows that it came from them that way I can
> reply to it and send them a message.
>
> Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
> objCDOMail.To = "you@yourdomain.com"
> objCDOMail.From = (request.form("ClientEMail"))
> objCDOMail.Subject = Whatever subject you want.
> objCDOMail.Body = Whatever body you want.
> objCDOMail.Send
> Set objCDOMail = Nothing
>
> Mikeal
>
>
> "Brian F." <Brianfitch1972@yahoo.com> wrote in message
> news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> > Hello All,
> >
> > I have created a form in FP XP and I have a question regarding
> emailing
> > the results of this form. Using FP extensions I have the results of
this
> > form E-mailed to a specific address. What I would like to know is if I
> can
> > have the user enter their a-mail address on the form and when the form
> sends
> > itself it will look like the form came from their a-mail address that
was
> > entered on the form. As it sits right now when the a-mail comes it
looks
> > like it was sent from the a-mail address that I setup in IIS 5.0 for
> sending
> > mail.
> >
> > Any help on this matter would be greatly appreciated.
> >
> >
>
>



Re: Form Results by Mike

Mike
Mon Dec 15 09:29:33 CST 2003

I would have the form 'submit' to a confirmation page that
that the client could print and the email code would be
included on that confirmation page. The code I gave is
ASP code and is server side code that the client will
not see.

Mike


"Philippe Berard" <Philippe.Berard@chukchansigold.com> wrote in message
news:#XLa$zZwDHA.1424@tk2msftngp13.phx.gbl...
> Mike,
> Could this be done with a 'submit' page that the client never sees and a
> print button on the same form as well? That is - sending the results via
> email AND having the client printing the form for review and signing. This
> would be the best and that is what we are looking into at this time.
>
> Regards
>
> Philippe Berard
> Philippe.Berard@chukchansigold.com
>
>
> "Mike" <mike4532> wrote in message
> news:ukIBmBpvDHA.2440@TK2MSFTNGP12.phx.gbl...
> > I am doing this with the following code.I have
> > a form that gets filled out. When they submit it,
> > it then goes to a 'submit' page that the client
> > never sees. I have the submit page record the
> > info into a dbase then send an e-mail and it
> > shows that it came from them that way I can
> > reply to it and send them a message.
> >
> > Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
> > objCDOMail.To = "you@yourdomain.com"
> > objCDOMail.From = (request.form("ClientEMail"))
> > objCDOMail.Subject = Whatever subject you want.
> > objCDOMail.Body = Whatever body you want.
> > objCDOMail.Send
> > Set objCDOMail = Nothing
> >
> > Mikeal
> >
> >
> > "Brian F." <Brianfitch1972@yahoo.com> wrote in message
> > news:OaVUdhovDHA.1760@TK2MSFTNGP10.phx.gbl...
> > > Hello All,
> > >
> > > I have created a form in FP XP and I have a question regarding
> > emailing
> > > the results of this form. Using FP extensions I have the results of
> this
> > > form E-mailed to a specific address. What I would like to know is if
I
> > can
> > > have the user enter their a-mail address on the form and when the form
> > sends
> > > itself it will look like the form came from their a-mail address that
> was
> > > entered on the form. As it sits right now when the a-mail comes it
> looks
> > > like it was sent from the a-mail address that I setup in IIS 5.0 for
> > sending
> > > mail.
> > >
> > > Any help on this matter would be greatly appreciated.
> > >
> > >
> >
> >
>
>