Receiving one of the following errors, when trying to email users or groups from Workarea - Settings - Groups or Users
Error: Missing senders address!,Error: Missing address for recipient(s)!
This is caused by an internal limit being exceeded, based on the quantity of email users or groups being passed in.
- Make a BACKUP copy of siteroot\workarea\email.aspx.cs
- Edit siteroot\workarea\email.aspx.cs
- Locate this line of code:
else if ((!string.IsNullOrEmpty(UserArray)) && (Information.IsNumeric(UserArray)))
Change to:else if ((!string.IsNullOrEmpty(UserArray))) // && (Information.IsNumeric(UserArray)))
note: you will need to add another ')' when you put the // in
- Locate this line of code:
else if (!string.IsNullOrEmpty(GroupArray) && Information.IsNumeric(GroupArray))
change to:else if (!string.IsNullOrEmpty(GroupArray)) // && Information.IsNumeric(GroupArray))
note: you will need to add another ')' when you put the // in - Save the file.
Please sign in to leave a comment.