I am working with arcade to create a send email link in a popup, I have 89 email addresses I need to use. When I use 47 emails address in the bcc variable, it generates the email. When I enter all the emails in the same bcc variable it will not generate the email. If I just paste the emails into a new email it recognizes them all. Is there some limitation on characters, or some other reason others might know?
The 47 emails is 1061 characters.
All emails are 2100 characters
var bcc = "";
var subject = "Road Closure for " + $feature.street;
var AdjStartTime = Text($feature.starttime,'h:mm A')
var AdjEndTime = Text($feature.endtime,'h:mm A')
var AdjStartDate = Text($feature.starttime,'MM/DD/YYYY')
var AdjEndDate = Text($feature.endtime,'MM/DD/YYYY')
var body = "Test;
var params = {bcc: bcc,
subject: subject,
body: body};
var url = "mailto:?bcc" + "?" + UrlEncode(params);
url = Replace(url, "TextFormatting.NewLine", "%0D%0A");
return url