Announcements
Hello, how r you? How I can add a button redirecting to outlook already with destinatary and subject?
Depending on what you are after, there are two things you can do, by adding code on to the OnSelect property of a button, for example:
Launch( "https://outlook.com" )
This simply opens a browser and directs it to outlook.com for a login.
Or, if you want to create and send an email, you should use the Office 365 Outlook Connector. The connector needs arguments as follows:
Office365Outlook.SendEmail("mail@mail.com", "email subject", "This is an email message");
I want that when I select button, launch a outlook screen with subject and destinatary
This will launch whatever default mail client the user has installed:
Launch("mailto:" & txtRecipient.Text & "?subject=" & EncodeUrl(txtSubject.Text) & "&body=" & EncodeUrl(txtBody.Text) )
Copied from: http://powerappsguide.com/blog/post/create-new-outlook-email-with-subject-and-body
You will need to specify values for the three text variables in this code
@BCLS776 Thanks for all your contributions to the forum. Your posts have helped a lot of users.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 76 Most Valuable Professional
Haque 69
Kalathiya 38 Super User 2026 Season 1