Send e-mail related to a field in the form

E

erick-flores

Hello

I have a field in my form that has the e-mail address of the person who
is filling the form. I want to create a button so it will take that
value from the e-mail field and send it to that particular e-mail
address, whenever I press the button. Can somebody help me here please

Thank you
 
S

S.Y.M. Wong-A-Ton

If you want to send the entire form including the email address, you can
create an email data connection and use a rule to submit to the data
connection from the button. The "To" field can be set to the email address in
the form field through the formula button. If you do not want to send the
entire form, you'll have to use code with either the MailEnvelope object
(http://msdn.microsoft.com/library/en-us/ipsdk/html/xdobjMailEnvelope_HV01021244.asp?frame=true)
or EmailAdapter object
(http://msdn.microsoft.com/library/en-us/ipsdk/html/xdobjEmailAdapterObject_HV01106499.asp?frame=true
). Search this newsgroup for the latter; there are many samples available on
how to get this done.
 
Top