Does anybody know if it is possible to set multiple recipients for the mail to administrator field? I set the user BCC email-field, but then the submitter also gets a copy.
Thanks for your reply! Unfortunately that didn't work either. Ending up by changing the code in Doc2Form.asxc.cs in a way the user email is sent to the field entered in the BCC field. (somewhere around line 1016).
I realize it's been a while since this was posted but for those that would like to send Doc2Form emails to multiple recipients it only requires a small modification to the doc2form.ascx.cs file in the App_Code Folder.
Now you can enter multiple addresses in the "Send to email address" field separated by either a comma or a semi-colon and it will send to multiple email addresses.
Doc2Form Multiple recipients
Does anybody know if it is possible to set multiple recipients for the mail to administrator field? I set the user BCC email-field, but then the submitter also gets a copy.
Hey Ralph,
I have no idea but worth trying to comma separate them as this works in the .NET mail protocol.
[email protected], [email protected]
Rich
Hi Rich,
Thanks for your reply! Unfortunately that didn't work either. Ending up by changing the code in Doc2Form.asxc.cs in a way the user email is sent to the field entered in the BCC field. (somewhere around line 1016).
It works!
Ralph
I realize it's been a while since this was posted but for those that would like to send Doc2Form emails to multiple recipients it only requires a small modification to the doc2form.ascx.cs file in the App_Code Folder.
Search the file for:
and replace it with:
Now you can enter multiple addresses in the "Send to email address" field separated by either a comma or a semi-colon and it will send to multiple email addresses.
Hope this helps someone.
is working on a reply...