Skip to main content
Solved

Email Address Validation

  • June 25, 2019
  • 3 replies
  • 135 views

bubblebeb
Contributor
Forum|alt.badge.img+6

Has anyone come across an email address validator using FME?

I want to use an API, ideally, to check email addresses for my contacts are valid.

Any assistance or workspaces would be appreciated.

Thanks

Best answer by afavaccio

Hi, you could set up an HTTPCaller to make an API Request to an online email checker, the API's response typically is JSON-structured format. For testing I've used https://mailboxlayer.com/ (could required subscription).

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

3 replies

arnovananrooij
Contributor
Forum|alt.badge.img+5
  • Contributor
  • 73 replies
  • June 25, 2019

You could use a StringSearcher in wich you can set a Regular Expression. There are a lot of regular expression examples to find on the internet. This is a simple one:

^[A-Z0-9._%-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}$


giosp
Contributor
Forum|alt.badge.img+7
  • Contributor
  • 51 replies
  • June 25, 2019

Hi, you can use a string searcher and use a regexp pattern as proposed here https://emailregex.com/


afavaccio
Forum|alt.badge.img+2
  • 19 replies
  • Best Answer
  • June 25, 2019

Hi, you could set up an HTTPCaller to make an API Request to an online email checker, the API's response typically is JSON-structured format. For testing I've used https://mailboxlayer.com/ (could required subscription).