I have a legacy Notification set up with Publications, Subscription and Topic. Trigger (publication) is an email that publishes to topic. A workspace subscribed this then "Get the Value from Topic Message".
In order to work with O365/modern authentication in Server 2022, I'm having to re-do this as a new style automation. I have the email part figured out. But whether I have my next 'Action' (my workspace) parsing the incoming parameter "email.body" or the "Event as JSON", I cannot get this to work as before.
The existing old-style solution expected input in this format:
{
"imap_publisher_content{0}": " ",
"fns_type": "imap_publisher",
"imap_publisher_sent": " ",
"imap_publisher_from": " ",
"imap_publisher_subject": " ",
"imap_publisher_content_type{0}": "TEXT/PLAIN; charset=ISO-8859-1",
"imap_publisher_received": " ",
"imap_publisher_to": " "
}
"Event As JSON" seems to feed me more JSON than necessary. Is it really necessary, as this thread suggests, to go back to using Topics, or is there some tweak needed that I' missing? Thanks.