Test multiple variables in a row

Hi Folks,
I’m relying on your help once more…

Now it’s about the following case:
I get a domain, first name and name via webhook (e.g. @dummy.com, John, Doe).

My goal is to test, which email belongs to john doe’s personal account.
For this i am using a tool in make called “Email List verify”.
In this tool I want to use the function “verify an email”.

Before the module “Email List verify” I created a perpetrator, which creates 18 different possible combinations from the domain and the name (module: set multiple variables).

Now i want, that the automation goes through every combination, until the module “Email List verify” output is positive.

Do you have an idea, how to do this?

Screenshot 1:

Screenshot 2 (output of set multiple variables):

Screenshot 3: (Input in email verfifyer):

THANKS FR YOUR HELP!

Hi @m_m

  1. Can you show the Set Variable module that generates the email variants?
  2. One of the possible solutions is adding all these email variants into an array and iterating the ‘Email List verify’ requests.

Hi, There you go:

@m_m just add all emails as a comma-separated string in one variable and use the split function.


As a result, you will get an array of emails that you can iterate afterward.

4 Likes

THANK YOU! That helped

3 Likes