Cloud Emails: Use dynamic email prefix Ultra only

If you want, you can inject random data inside the email prefix every time you generate a new email address. In order to do this, you can wrap one of the many Faker generatorsopen in new window between {{ and }} braces.

For example, if you want to generate an email address that contains a different first name and last name each time, you can type something like this:

{{name.firstName}}.{{name.lastName}}.

The above will generate emails in the following format:

This functionality is implemented using faker.helpers.fake() methodopen in new window from Faker library. What works there will pretty much work in this case as well.

Keep in mind that you will not be able to generate email addresses that contain special characters other than _ - or .

You will also not be able to use any of your Fake Data custom generators. For requesting a Cloud Email address with a more complex prefix logic, see how to request a Cloud Email programmatically.