I have the following situation, I need to upload the information of a mailing list to orchestrator queues, I require the subject and body data.
how can I do this?
I have the following situation, I need to upload the information of a mailing list to orchestrator queues, I require the subject and body data.
how can I do this?
Hi @alexis.mendoza
You can try this Steps:
ItemInformation: Create a Dictionary variable where you can add the subject and body as key-value pairs. For example:
Hi
Hope the below steps would help you resolve this
Let’s take like I have the mail list names as listMails
Now IN orchestrator create a queue named mail_queue
In studio use a FOR EACH activity and pass the above mail list variable and change the type argument as System.Mail.MailMessage
Inside the loop use a ADD QUEUE ITEM activity where in Item information pass the subject as item.Subject.ToString and body as item.Body.ToString
This will repeat till all value sin loop is added to queue
Have a view on this thread for few more insights
Cheers @alexis.mendoza
thank you very much it worked
thank you very much succes
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.