XUpload - XUpload Pro - Multiple confirm_email addresses

Message
Author
jeffshead
Posts: 18
Joined: Apr 21, 2009 3:26 pm

XUpload Pro - Multiple confirm_email addresses

#1 Postby jeffshead » Apr 03, 2012 7:46 pm

Is there a way to send confirmation emails to more than one email address?

I see the following in 'XUploadConfig.pm' but none of my edits work:

Code: Select all

# Email that confirmations will be sent to
 confirm_email      => '[email protected]',
So, can this be done by adding two or more emaill addresses or maybe by adding a CC or BCC line?

Thanks,

Jeff :)

ssanders
Posts: 6
Joined: Mar 06, 2012 4:29 pm

#2 Postby ssanders » Apr 05, 2012 1:02 pm

Just comma-delimit:

Code: Select all

 # Email that confirmations will be sent to
 confirm_email      => '[email protected],[email protected]',

jeffshead
Posts: 18
Joined: Apr 21, 2009 3:26 pm

#3 Postby jeffshead » Apr 05, 2012 1:10 pm

ssanders wrote:Just comma-delimit:

Code: Select all

 # Email that confirmations will be sent to
 confirm_email      => '[email protected],[email protected]',
Thank you!

I must have tried every other combonation of commas, single/double quotes except for this. It works!