Seems there should be a way to send messages to an entire Group that I own right? Members have organizational accounts but are from different organizations. I posed this question on Friday as a programming question - Format smtp notifications to Group members, arcgis-online - But at this point I would be fine with going through the ArcGIS Online directly.
I don't see buttons or tabs or any way to send a Group message. How do I send messages to my Group members?
Just FYI I am abandoning the Python API route because I didn't get any responses and for one-off messages I am fine to use functionality online. The problem with that route was that my Python text with linebreaks:
<SPAN class="string token">'Dear Guys\n\nHere is my message body.\n\nThanks\n\nZach'</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
- is not formatting Python text. Just comes out as one big string in e-mail body when passed to notify function.
group_name<SPAN class="punctuation token">.</SPAN>notify<SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">[</SPAN>group_members_to_sent<SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'subject'</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'msg_body'</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'e-mail'</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
Thanks,
Zach