My email received trigger activity throwing error faulted in orchestrator?

  • State:Faulted
  • Raw message:

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)

Hi @Naveen_Kanike

Is this error only getting while running from orchestrator? Are you able to run it from studio without any error?

Thanks

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

Hi @neethu.krishnan6 ,

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

Hi @Naveen_Kanike ,

Can you please go through this below documentation. I hope this will help you to solve your issue.

Thanks

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

Hi

You can achieve this using GetOutLookMailMessages activity if you have outlook account.

  1. Get all the mail messages using the above activity
  2. Iterate through each mail message using For each activity- Inside that you can give the Mail messages variable from the previous GetOutlookMailMessage activity
  3. 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.
  4. 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.

Hope this will help you.

Thanks

Hi @neethu.krishnan6 ,

i did as you said but in if condition i can’t able to write the OutlookMailMessage_Var.From.ToString.contains(“email ID of the sender”)

what to do?

i mean to say

if condition(CurrentItem.From.ToString.Contain(“email id”)

am i right???

Hi @neethu.krishnan6,

I don’t want to open the my outlook. As per your logic my outlook will open here i don’t added the my mail to desktop application.

what should i do without adding mail to desktop outlook application is possible to read the emails.

Hi @Naveen_Kanike ,

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.

  1. Add a Microsoftoffice 365 scope activity and configure your account.
  2. Get mail activity to get all mails
  3. Remaining steps are same for iterating the mail messages.

Thanks

i don’t have the azure application id to connect microsoftoffice 365 scope acctivity?

Hi @Naveen_Kanike

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.

image

Hi @neethu.krishnan6 ,

error is coming Get mail: Code: generalexpection
message: An error occurred sending the request.

it is opening the my browser ?

Hi @neethu.krishnan6,

Are you there?

@Naveen_Kanike

Please check the below thread .Hope this will help you.

Thanks
Neethu

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.