This guide builds on the starting from scratch guide and adding optional column guide and will go over how to create email code resolvers for your site columns.

Jancy provides two methods to connect to email accounts for retrieving codes - Gmail integration and IMAP integration. This guide will go over how to format each of these resolvers and how to add parsers to the end.

Gmail

The Gmail resolver can be used to retrieve a code from an email in a Gmail account. This section of the guide will go over how to format the Gmail resolver.

<aside> ℹ️ This guide will be using the Ron’s editor CSV editor, but the process will be relatively the same regardless of what CSV editor you use.

</aside>

  1. The image below shows an empty site column, this example is using a site column that specifies the Ticketmaster site, but the steps will be the same regardless of the site being specified.

profilecsv8.png

  1. The format for the resolver is emailcode=gmail:your-gmail-id. Replace "your-gmail-id" with your Google account ID, which can be found on your Google account settings page. If you haven't set up a Google account yet and wish to do so, please visit our Google Workspace documentation page for setup instructions.

profilecsv15.png

<aside> ❗ After making changes to your profile CSV, make sure to save the file then refresh its contents on the profile settings page in Jancy using the refresh button under the CSV.

</aside>

This concludes how to add the Gmail resolver to your profile CSV. The section below will cover how to add a specific parser to the emailcode resolver.

Adding Parser to Gmail Resolver

In the section above we went through how to add a basic Gmail resolver. The way it is currently formatted, the resolver would search for Ticketmaster emails with the label of INBOX from the Gmail associated with the jancy-gmail Google Account. We will now cover how to add a parser to this resolver if you were looking to search for different emails. For a list of all of the recognized Jancy parsers please visit our profile documentation here.

  1. To add a parser to the email resolver above the formatting is going to be emailcode=gmail:your-gmail-id**:Parser.** For the parser to be identified we need to add a colon then the parser at the end of the resolver. In the example below we will use the tm parser, for a list of all of the recognized Jancy parsers please visit our profile documentation here.

profilecsv16.png

The step above is all you will need to do to add a parser.

<aside> ❗ After making changes to your profile CSV, make sure to save the file then refresh its contents on the profile settings page in Jancy using the refresh button under the CSV.

</aside>