<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Arcade and email from Popup issues in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607745#M64485</link>
    <description>&lt;P&gt;I am working with arcade to create a send email link in a popup, I have 89 email addresses I need to use.&amp;nbsp; When I use 47 emails address in the bcc variable, it generates the email.&amp;nbsp; When I enter all the emails in the same bcc variable it will not generate the email.&amp;nbsp; If I just paste the emails into a new email it recognizes them all.&amp;nbsp; Is there some limitation on characters, or some other reason others might know?&lt;/P&gt;&lt;P&gt;The 47 emails is 1061 characters.&lt;/P&gt;&lt;P&gt;All emails are 2100 characters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var bcc = "";&lt;BR /&gt;var subject = "Road Closure for " + $feature.street;&lt;BR /&gt;var AdjStartTime = Text($feature.starttime,'h:mm A')&lt;BR /&gt;var AdjEndTime = Text($feature.endtime,'h:mm A')&lt;BR /&gt;var AdjStartDate = Text($feature.starttime,'MM/DD/YYYY')&lt;BR /&gt;var AdjEndDate = Text($feature.endtime,'MM/DD/YYYY')&lt;BR /&gt;var body = "Test;&lt;BR /&gt;var params = {bcc: bcc,&lt;BR /&gt;subject: subject,&lt;BR /&gt;body: body};&lt;BR /&gt;var url = "mailto:?bcc" + "?" + UrlEncode(params);&lt;BR /&gt;url = Replace(url, "TextFormatting.NewLine", "%0D%0A");&lt;BR /&gt;return url&lt;/P&gt;</description>
    <pubDate>Mon, 21 Apr 2025 17:57:11 GMT</pubDate>
    <dc:creator>CFECAK</dc:creator>
    <dc:date>2025-04-21T17:57:11Z</dc:date>
    <item>
      <title>Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607745#M64485</link>
      <description>&lt;P&gt;I am working with arcade to create a send email link in a popup, I have 89 email addresses I need to use.&amp;nbsp; When I use 47 emails address in the bcc variable, it generates the email.&amp;nbsp; When I enter all the emails in the same bcc variable it will not generate the email.&amp;nbsp; If I just paste the emails into a new email it recognizes them all.&amp;nbsp; Is there some limitation on characters, or some other reason others might know?&lt;/P&gt;&lt;P&gt;The 47 emails is 1061 characters.&lt;/P&gt;&lt;P&gt;All emails are 2100 characters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var bcc = "";&lt;BR /&gt;var subject = "Road Closure for " + $feature.street;&lt;BR /&gt;var AdjStartTime = Text($feature.starttime,'h:mm A')&lt;BR /&gt;var AdjEndTime = Text($feature.endtime,'h:mm A')&lt;BR /&gt;var AdjStartDate = Text($feature.starttime,'MM/DD/YYYY')&lt;BR /&gt;var AdjEndDate = Text($feature.endtime,'MM/DD/YYYY')&lt;BR /&gt;var body = "Test;&lt;BR /&gt;var params = {bcc: bcc,&lt;BR /&gt;subject: subject,&lt;BR /&gt;body: body};&lt;BR /&gt;var url = "mailto:?bcc" + "?" + UrlEncode(params);&lt;BR /&gt;url = Replace(url, "TextFormatting.NewLine", "%0D%0A");&lt;BR /&gt;return url&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 17:57:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607745#M64485</guid>
      <dc:creator>CFECAK</dc:creator>
      <dc:date>2025-04-21T17:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607758#M64486</link>
      <description>&lt;P&gt;If this is a copy and paste of your code, the assignment of the body variable is missing an end quote and would likely cause "Test execution error". In your url variable assignment, you are including the argument for BBC (not a valid param) and then restarting the arguments to include your listed parameters. You might consider revising your url assignment to look something more like:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var url = `mailto:?${UrlEncode(params)}`&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 21 Apr 2025 17:46:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607758#M64486</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-04-21T17:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607760#M64487</link>
      <description>&lt;P&gt;If making these adjustments doesn't prove to be fruitful, try assigning your coded parameters to a variable and sending that to console so you can review that portion of the output.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 17:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607760#M64487</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-04-21T17:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607768#M64488</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the corrected code.&amp;nbsp; Output shows emails with the ... so it looks like it should generate the email, but does not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 18:06:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607768#M64488</guid>
      <dc:creator>CFECAK</dc:creator>
      <dc:date>2025-04-21T18:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607798#M64489</link>
      <description>&lt;P&gt;There are &lt;A href="https://saturncloud.io/blog/what-is-the-maximum-length-of-a-url-in-different-browsers/" target="_blank" rel="noopener"&gt;URL length limits depending on the browser&lt;/A&gt; so perhaps you're hitting this limit.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 19:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607798#M64489</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2025-04-21T19:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607806#M64490</link>
      <description>&lt;P&gt;This is the issue.&amp;nbsp; I am using chrome, when I switched to firefox, all the code worked just as it should.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 19:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1607806#M64490</guid>
      <dc:creator>CFECAK</dc:creator>
      <dc:date>2025-04-21T19:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1608007#M64494</link>
      <description>&lt;P&gt;Darn, I thought Chrome didn't have that small of a character limit. Unfortunate.&lt;/P&gt;&lt;P&gt;Are the e-mails all in your organization? You could always make a group e-mail in your org to send to one single address if this was the case?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 13:01:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1608007#M64494</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-04-22T13:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade and email from Popup issues</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1609640#M64537</link>
      <description>&lt;P&gt;We did discuss the group, but with it changing constantly we may just use firefox.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 13:20:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-and-email-from-popup-issues/m-p/1609640#M64537</guid>
      <dc:creator>CFECAK</dc:creator>
      <dc:date>2025-04-28T13:20:38Z</dc:date>
    </item>
  </channel>
</rss>

