cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Power automate send email from current user

Hi,

 

I have a use case that I want to email to be send from current user id who have created the item.

 

From address in the email should be the current user email.

 

can you please advice how to achieve the same.

 

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions

If you are using an automated trigger then the flow is running in the security context of the maker.  To use a different email address to send an email the maker account would need to have "Send as" or "Send on Behalf of" permission to that mailbox.  If there are only one or two from accounts that is possible.  But if there are a lot of possibilities it becomes very hard to manage and is impractical. There is no workaround.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

View solution in original post

18 REPLIES 18
Pstork1
Most Valuable Professional
Most Valuable Professional

  • If the flow is running using a Power Apps trigger then you can include the current user email address as a parameter when the flow is invoked.  That address could then be used in the From field.
  • If the flow is running from a manual Power Automate trigger then the email of the user invoking the flow is included in the dynamic content from the trigger. That address could then be used in the From field.
  • If the flow is running from an automated or recurrence trigger then it is running in the security context of the original maker.  In this case there is no current user, just the maker account.  That email could be used in the From field.

Which of those triggers are you using?



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @Pstork1 

 

Thanks for the response.

 

I am using automated trigger , in send email action if I configure Created by email in "Send As" section it throws the following error "You are not authorized to send mail on behalf of the specified sending account."

 

If you are using an automated trigger then the flow is running in the security context of the maker.  To use a different email address to send an email the maker account would need to have "Send as" or "Send on Behalf of" permission to that mailbox.  If there are only one or two from accounts that is possible.  But if there are a lot of possibilities it becomes very hard to manage and is impractical. There is no workaround.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @Pstork1 

 

There will be lot of possibility in the email address so I will opt for PowerApps button trigger then. 

And one more query , how to pass multiple value selected in Combo box people picker field form PowerApps to TO address in Power Automate send email action through button trigger.

1) Here's the code for in Power Apps on the button.

ClearCollect(myemails,ComboBox1.SelectedItems);
SendEmail.Run(JSON(myemails,JSONFormat.Compact),User().Email);

Create a collection from the SelectedItems in the Combobox.  Then use JSON() to translate that collection into a JSON formatted array as a parameter.

2) Then in the flow.  Add a Parse Json action to parse the collection array you send as a parameter.  Since its an array you'll need an apply to each to get the emails into a semicolon delimited string variable.  Use that variable for the To:

image.png

Details

image.png

image.png



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

@Pstork1 I have gotten the User().Email into the flow, so I can just use it as the sender? IT will be recognized as a connection?

Pstork1
Most Valuable Professional
Most Valuable Professional

Since the flow is triggered from Power Apps, you can use the email from the user triggering the flow in the SendAs field of the email.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Do you by any chance know if this is the same for if the flow is triggered instantly from a business process flow? I have a sense it should follow the same logic. @Pstork1 

Pstork1
Most Valuable Professional
Most Valuable Professional

No, flows that are triggered automatically will run in the context of the original maker.  To use a different address in the From field requires that the maker has Send As permission to that mailbox.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
shavora
Post Prodigy
Post Prodigy

@Pstork1  I see, its considered an automatic flow even if the person has to click a button to execute it in the business process flow.

Apologies for the Swedish, its buttons that are the initiations of the flow: 

Skärmavbild 2022-02-25 kl. 10.57.14.png

 Which means we can get the ID of the person triggering it. But there might be an ambiguous line here of what is an automated and an instant.

Skärmavbild 2022-02-25 kl. 11.00.10.png

 

Pstork1
Most Valuable Professional
Most Valuable Professional

In this case the trigger is an automated trigger because its being triggered from Dataverse.  When you click a button in Power Apps that is considered a manual trigger.  The one I think you want is the following.  Is a manual trigger and should run in the context of the person running the business process.

image.png



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

I have this question too, I wonder if you can help with this scenario?

 

I have a cloud flow which passes data from a form to an approval process if approved, an email is sent to one supplier (and asana tasks are also created in other conditions).

 

I'd like to send from the person who created the form (this can only be done by users within our Microsoft 365 Environment). At the moment I can only send from me as I created the flow, but this clearly isn't ideal for lots of users.

 

New IT User Power Automate Flow.png

 

Can you suggest how I could adjust this?

Pstork1
Most Valuable Professional
Most Valuable Professional

Since this is using an automated trigger for when a form is submitted you can't send an email as the person who created or filled out the form unless you have "Send as" permission to their mailbox.  



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

@lwt-hot you can create a user that does all emailing and name it something neutral and appropriate and then use that mail as sender. In the email you can write on behalf of [user that triggered the flow] and if they need to respond they should do so to their address. You can send a hidden copy to the user. 

 

It might not be ideal though... And using getting permission on mailbox is better. I am myself debating about these options. 

Pstork1
Most Valuable Professional
Most Valuable Professional

Just to clarify what @shavora said.  Using a neutral account (a service account) will work, but you then need to create the flow using that account as the maker or obtain "Send As" permission to that one mailbox so you can use it in the From.  



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
shavora
Post Prodigy
Post Prodigy

Yeah, share as owner to a service account has worked for me. And then I added the reference connection for that service account on the email action.

Hi @Pstork1 ,

 

I have the similar flow which is triggered by PowerApps, after an email is sent (by the user who triggered the flow via PowerApps), I want to get the sent email ID, but the flow result error "ErrorInvalidMailboxItemId". 

I tried to fill in user's email in "Original Mailbox Address" field but result remain the same.

Can you please advise on this?

Pstork1
Most Valuable Professional
Most Valuable Professional

Please post this as a new question.  You'll get more responses and others will be able to find the answer more easily later.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (667)