The specified folder does not exist System.ArgumentException: The specified folder does not exist at UiPath.Mail.OutlookAPI.GetMessages(MAPIFolder inboxFolder, Int32 count, MailFilterVariant filterVariant, EOrderByDate orderByDate, Boolean onlyUnread, Boolean markAsRead, Boolean getAttachments, CancellationToken cancellationToken) at UiPath.Mail.OutlookAPI.GetMessages(String account, String folderMail, Int32 count, MailFilterVariant filter, EOrderByDate orderByDate, Boolean onlyUnread, Boolean markAsRead, Boolean getAttachments, CancellationToken cancellationToken) at UiPath.Mail.Outlook.Activities.GetOutlookMailMessages.<>c__DisplayClass40_0.b__0() at System.Threading.Tasks.Task1.InnerInvoke() at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at UiPath.Mail.Activities.Extensions.TaskExtensions.TimeoutAfter[TResult](Task1 task, Int32 timeoutMs) at UiPath.Mail.Activities.GetMailActivity.ExecuteAsync(AsyncCodeActivityContext context, CancellationToken cancellationToken) at UiPath.Shared.Activities.AsyncTaskCodeActivityImplementation.EndExecute(AsyncCodeActivityContext context, IAsyncResult result) at UiPath.Shared.Activities.AsyncTaskCodeActivity.EndExecute(AsyncCodeActivityContext context, IAsyncResult result) at UiPath.Mail.Activities.BaseMailAsyncActivity.EndExecute(AsyncCodeActivityContext context, IAsyncResult result) at System.Activities.AsyncCodeActivity.System.Activities.IAsyncCodeActivity.FinishExecution(AsyncCodeActivityContext context, IAsyncResult result) at System.Activities.AsyncCodeActivity.CompleteAsyncCodeActivityData.CompleteAsyncCodeActivityWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
my requirement is i want trigger when ever perticular email address mails come to me the process has to and read the body text and store that text into excel here in my case i can’t write a code with subject because it change continues so i wrote condition like when ever any mail comes from required email address here i used email recevied trigger and configure its triggering but next steps i am using get email by ID activity i don’t how to read the any type of emailbody recevied from that email address read and stored in excel. how to do this iam structed iam using outlook activities in my case
no my trigger is working from orchestrator and in studio i had used get email by id so iam getting error on get email by id how to read the body of perticular email after the my process triggers
no it will read all the emails if i use getoutlook mail in that document its no use for me can you tell me how use to get email by ID activity in UiPath document which is not clear
You can achieve this using GetOutLookMailMessages activity if you have outlook account.
Get all the mail messages using the above activity
Iterate through each mail message using For each activity- Inside that you can give the Mail messages variable from the previous GetOutlookMailMessage activity
Use an IF loop inside the For each loop with this condition OutlookMailMessage_Var.From.ToString.contains(“email ID of the sender”) then
just try to print the OutlookMailMessage_Var.Body.Tostring else just skip that mail.
once you get the Body as string then you can write that to Excel using data table and excel activities.
You will get all the details of mail from the mail message variable - OutlookMailMessage_Var like From address, To address, Subject,Body , attachements etc.
Can you try with Microsoftoffice 365 Get mail activity . Once we have added the connection with mail account,this will not open the mail box everytime.
Add a Microsoftoffice 365 scope activity and configure your account.
Get mail activity to get all mails
Remaining steps are same for iterating the mail messages.
if your account is Microsoft then you can use the below activity to connect to your account and inside this you can keep Get mail activity. There is no need of Azure application ID for this.