How to add 2 emails in "To" field

C

Columbiared

I am currently using a submit to email data connection to email a form to
various recipients. How do I include multiple email addresses in the "To"
field when in the Data Connection Wizard?

If it makes any difference, the email addresses of the recipients are stored
in various fields within the form and so I am merely pulling in the fields
when building the "To" field.
 
S

S.Y.M. Wong-A-Ton

Click on the formula button behind the "To" field, and then use a formula like

concat(emailfield1, ";", emailfield2)

on the Insert Formula dialog box.
 
Top