cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
bkeano
Resolver I
Resolver I

Validate Email Address

Hi

 

I have a flow that recieves 'Get Responses' from MS Forms.

The Form asks the user a number of questions, and included is a question if they wish to recieve an email receipt of the data entered to the form, if they do it will ask them for their email address.

I've designed a email in Flow that if they request a email reciept ( condition in flow) then the email is sent.

But before I send the email in flow I want to validate if the email address is formatted correctly, can flow carry out this type of validation or what is the expression for it? ( So check that it contains '@', also has a dot etc)

Or alternatively if the email sending fails can I start another action of that?

 

If the email does not validate correctly then I will put a condition in so that our office team can contact the customer to let them know

 

Below a screenshot of my flow

screenshot.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
yashag2255
Super User
Super User

Hey @bkeano 

 

Yes. You can follow the steps as: 

ccse3.PNG

 

Expression: 

contains(last(split(body('Get_response_details')?['r9f2ae5d6c71c4cdc88fcf52ebc7d86ed'],'@')),'.')

In the expression, remove everything from body upto the ]. Place cursor here and from the dynamic content select the email field of the form. 

 

This expression will check if the last part of the string split at @ contains a '.'. If it does, the value is true and you have the send email to customer in the yes branch and if no send the email to a team member with any relevat details. 

 

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

 

 

View solution in original post

19 REPLIES 19
yashag2255
Super User
Super User

Hey @bkeano 

 

Yes. You can follow the steps as: 

ccse3.PNG

 

Expression: 

contains(last(split(body('Get_response_details')?['r9f2ae5d6c71c4cdc88fcf52ebc7d86ed'],'@')),'.')

In the expression, remove everything from body upto the ]. Place cursor here and from the dynamic content select the email field of the form. 

 

This expression will check if the last part of the string split at @ contains a '.'. If it does, the value is true and you have the send email to customer in the yes branch and if no send the email to a team member with any relevat details. 

 

Hope this Helps!

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

 

 

manuelstgomes
Community Champion
Community Champion

Hi @bkeano 

 

The easiest way to validate this would be to use regular expressions, but Flow doesn't support them yet.

 

There's already a proposal under review to support this.

https://powerusers.microsoft.com/t5/Flow-Ideas/Support-for-regex-either-in-conditions-or-as-an-actio...

 

A quick workaround would be to use a service that validates that for you. I've found a free that you can use. Just create an account at https://mailboxlayer.com (they support up to 250 queries a day for free so check if this is enough for you) and use the API as follows: 

 

small-Screenshot_2019-10-04_at_10_44_50.jpg

 

You can get the API key in your account. Please note that there are a lot of services like this. This was the first one I found and works 🙂

 

Does this help you?

 

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

Cheers
Manuel

 

v-litu-msft
Community Support
Community Support

Hi @bkeano,

 

Has your problem been solved?
If your problem has been solved, You could go ahead and mark the post as solved by clicking “Accept as Solution” so that this thread will be marked for other users to easily identify!

Best Regards,
Community Support Team _ Lin Tu

SNARANJO
New Member

Good aproach to the solution, but first you need to verify that there´s a "@" in the string, failing to do so, may validate strings without the "@" like for example: "a.b.c.com"

 

So, these would be the two validations to verify for a valid email address on a String:

 

contains(*The Email Address String Goes Here*,'@')

AND

contains(last(split(*The Email Address String Goes Here*,'@')),'.')

 


SNARANJO_0-1624295982011.png

 

 

adylim
Frequent Visitor

this is great! @SNARANJO ! I'm now trying to work on the case if the user enters abc@domain.com@domain.com (yes this has happened).. not sure how I can achieve the "there should only be 1 '@' and 1 '.'

If request amount is not too bulky you can always ask your self for string validation using an adaptive card from the Flow bot to you with the string you need to double check.

 

In this case i check the text string for these and other characters: space " " "<" "mailto:" "/" "," ";" etc. You could build an expression to find two or more "@" in the same string as well.

 

There are some very helpfull videos on coding the adaptive cards on youtube. (These may be tricky)

 

By using this simple form you avoid sharing an email address to some unknown server over the internet for "validation".

 

SNARANJO_0-1628010159596.png

 

 

 

{
"inputs": {
"host": {
"connectionName": "shared_teams",
"operationId": "SubscribeUserFlowContinuation",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_teams"
},
"parameters": {
"UserFlowContinuationSubscriptionRequest/body/recipient/to": "you@yourdomain.com;",
"UserFlowContinuationSubscriptionRequest/body/messageBody": "{\n \"$schema\": \"http://adaptivecards.io/schemas/adaptive-card.json\",\n \"type\": \"AdaptiveCard\",\n \"version\": \"1.2\",\n \"body\": [\n {\n \"type\": \"TextBlock\",\n \"text\": \"Check Email @{Your input text to verify}\",\n \"weight\": \"Bolder\",\n \"size\": \"Medium\"\n },\n {\n \"type\": \"TextBlock\",\n \"text\": \"Please check this email:\",\n \"isSubtle\": true,\n \"wrap\": true\n },\n {\n \"type\": \"TextBlock\",\n \"text\": \"Email to check: @{Your input text to verify}\",\n \"wrap\": true\n },\n {\n \"type\": \"Input.Text\",\n \"id\": \"RevisedEmail\",\n \"placeholder\": \"user@domain.com\",\n \"spacing\": \"None\",\n \"style\": \"Email\"\n },\n ],\n \"actions\": [\n {\n \"type\": \"Action.Submit\",\n \"title\": \"Submit\"\n }\n ]\n}",
"UserFlowContinuationSubscriptionRequest/body/updateMessage": "Email verified OK!",
"UserFlowContinuationSubscriptionRequest/body/shouldUpdateCard": true,
"UserFlowContinuationSubscriptionRequest/body/recipient/isAlert": true
},
"authentication": "@parameters('$authentication')"
}
}

 

adylim
Frequent Visitor

great solution!! I will give this a try! thanks! @SNARANJO 

This is a great solution, but I'm running into the problem that if the email is blank than I don't want anything to happen and now my flow is showing that it's failing but it's actually working.  Is there a workaround that I can verify that an email address has or has not been entered and if yes than an email is sent and if no than nothing happens?  The error I'm receiving is "'Email' at line '1' and column '3316': 'The template language function 'contains' expects its first argument 'collection' to be a dictionary (object), an array or a string. The provided value is of type 'Null'.'.".  Any help is appreciated, thanks in advance!

adylim
Frequent Visitor

do you have a screenshot of your flow? to handle blank email, I usually put a condition of a string evaluation of the email ahead of the actions I want to perform

Hi, still need help on this issue?

Yes, I still need help.  So I'm using empty() instead of contains() or length() but I think most any of these would work.  The problem I'm running into is that if there is not an email address than the flow fails and if there is an email address it runs.  The field that the flow is looking at is a person field in SharePoint.  The information is populated from a PowerApp.  What happens in the PowerApp is someone completes it and that person determines who should be notified and not.  I need the flow to look through all of the notificaiton fields to see if someone has been selected or not and to send email to the people who are selected.  I hope that makes sense.  

 

abonahoom_0-1635871677952.png

abonahoom_1-1635871743062.png

 

abonahoom_2-1635871825457.png

 

I posted a couple screenshots below.  

You could try this: 

  • Add an parallel branch after "Send an email (V2) preview (if this is successful it will continue)
  • Add an Send email to support team and configure the run after (only if the step below has failed this branch will continue)
  • Update Row
  • Terminate the flow

I'm getting the error before send an email.  The flow seems to be erroring out when it looks at the condition and sees that there is no email address than it's telling me that the email cannot be null.  What I'm confused about is that's why I have the condition, if there is not an email address than I don't want the branch to run, if there is an email address I want the email to be sent.  How do I get rid of this error when technically, the flow is working...I have a parallel branch checking two different fields for email addresses.  One of the fields has an email and the other doesn't.  The flow is sending an email where there is an email address and not sending an email where there isn't an email address.  The problem is that the entire flow is failing because there is not an email address in one branch and it's telling me it can't be a null value.  Does that make sense?Capture.JPG 

maybe you have to change "0" with the expression "null" 1.PNG

one more thing. Why do you use "get items" and not "get item"? Do you need more than one item in your flow?

Ventit
Responsive Resident
Responsive Resident

I put the email into a string variable (in my case called getemail) and then test for a multitude of reasons an email can be invalid using

 

or(endsWith(variables('getemail'),'.'),startsWith(variables('getemail'),'.'),startsWith(variables('getemail'),'_'),startsWith(variables('getemail'),'@'),startsWith(variables('getemail'),'-'),contains(variables('getemail'),' '),startsWith(variables('getemail'),'.'),contains(variables('getemail'),'<'),contains(variables('getemail'),'>'),not(contains(variables('getemail'),'@')),equals(length(variables('getemail')),0),not(Contains(last(split(variables('getemail'),'@')),'.')))

 

This will return true or false where true = an invalid email

 

I need all these checks as the email is a free non formatted, non compulsory field.  I encourage an email in that field but what I get is enormously not.  While i do not get a fail now in my process it is still possible for the email to be invalid and the email gets rejected at the smtp level

 

It would be great if they could create a validate function built in.

if you use last to refer to the part after @.. but then you have no @ at all and a dot in the address field, this will not work 

Could you share the condition if I apply to a SharePoint list column

Helpful resources

Announcements

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Users online (4,676)