get emails (v3) for the shared email box in the logic app - azure-logic-apps

I want to process shared box emails once in a day by logic app. I tried using Get emails(v3) and when I am trying to login into shared box with email then it connects to my email id as shared mail box has email id but user account is linked / given permissions by the user how have access to it.
I am able to view my emails by Get emails (V3) action. how can I view Inbox by Get emails V3 action on shared email box.
I do not want to process email immediately like in "when a new email arrives in a shared mailbox"

AFAIK, Yes you can add an recurrence step before the step of when a new email arrives in a shared mailbox as below:
Fisrtly, add recurrence trigger as below for 1 day as below:
then click on get mails action as below:
or you can use the below action:
By using this we can get the unread messages on a given particular day.

Related

How to generate links for profile completion with expiry date in NextJS - Supabase

I'm currently working on a NextJS-Supabase project where I have to build a dashboard for some vendors.
Each vendor should be able to login into his dashboard and add his customers to keep track of their informations. The process of adding a customer falls into the following steps :
fill the customer email and submit the request of adding him.
The customer receives an email containing a link available for 5hours.
The link redirects him to a page where he can complete some of his basic information such as address, phone...etc.
Once the form submitted the customer data are updated in Supabase.
I don't know how to implement this in NextJS-Supabase knowing that the customers don't have a user account. Only vendors have a user account and can login/logout.

How to check Outlook folder has mail or not

What Azure service allows us to run at a fixed interval (IE every 5 min), and if a given Outlook/mailbox folder has one or more emails in it, then send one notification email?
We have a Logic App that does email processing. If the processing fails for whatever reason, the email is placed into a "Failed" folder, and an email notification is sent out. The issue is when a dependent service is down, we are getting hundreds of email an hour.
We tried creating a second Logic App that runs every 5 min, sending email if it found email in the folder that is "flagged", but we still received one email per flagged email.
We are thinking a separate service that runs every so often, and if a folder has email in it, then send out a single email.
Actually there is a Outlook trigger action to detect if there is an email is flagged. It supports to change the Folder,Importance,Interval and add other parameters to match.
And this is the action Optional Parameters description.

How can I track the delivery status of the sent email in "Send an email" Azure Logic App Outlook Connector

When using Azure Logic App Office 365 Outlook connector - "Send an email", is there a way to find out if the email was actually delivered or not to the recipient so as to take a specific action based on the failure?
I used an invalid email ID in the connector, but the action of sending email is shown as successful even though the email was not delivered. To confirm it is an invalid email ID, I sent email to this invalid email ID from my Outlook and I received an undelivered email message.
In the next action after this “Send an email” action, I selected the 3 options (has failed, is skipped, has timed out) under “Configure run after”. However, this action is never executed as the email sending action is always successful even though the email was never delivered to the user.
Below is a screenshot of my logic app. The bottom right action in yellow is never executed even though the email is not sent in the previous step.
Send Email Logic App
Any inputs on how I can find out if the email was actually delivered or not?
My goal here is to find out if the user actually received the email or not, and then take some action if the email delivery failed.
No, this is not possible from within the Logic App.
The only way to occasionally accomplish this is to monitor the sender inbox for NDRs (Non-Delivery Receipt). This can take minutes to hours.
Be aware, a number of email systems will not even send NDRs as they can be used to fish for email addresses.
You can use get emails action to get the latest email and you can perform the next action based on the condition whether the subject of the email we get contains the "Undelivered" string.
Sometimes it takes long to receive the undelivered report email in outlook. so i made a specific flow which will extract the wrong email that i sent the mail to and send me an adaptive card with that email provided in it.

Map User Id with Connection Id

I am creating a chat application using Wpf. So far I have created all the basic interfaces and most of the methods required. I am maintaining a database and it also saves details of all the users along with an auto incremental user id.
I am trying to use SignalR to send messages between online users connected to a hub. At the same time, a copy of the message is saved in the database with a sending user id and receiving user id.
When a message is sent to a user via a hub, I specify the user id of the receiver of the message. But when sending it to the receiver from the hub, I don't know how to map the user id with the connection id of the receiver.
How can I accomplish this task?
Check out this link
Mapping ASP.NET SignalR Connections to Real Application Users
basically this is done by overriding OnConnected and OnDisconnected of Hub class

Salesforce, send email to multiple email address through a package

I am new to Salesforce development and so would greatly appreciate any help for the following:
We have a Payment center app (somewhat like Zuora) that does invoicing and billing. Now this packaged app has a scheduler that sends reminders for declined credit cards etc daily at 5:00am.
What we are trying to achieve is that we have 3 email address fields (one standard and two custom) on Account. We want the email to be sent to all three addresses.
Since it is being run by sheduler that sends a number of reminders so am not sure how to do it.
One way I was thinking was to have a workflow rule on task object so that whenever an email with "Failed Payment" is created then it should send an email alert to the other two other email addresses. What I am not sure about is how to include those email addresses in email alert?
Thanks!

Resources