2 Different Emails for two different contact forms

I have two different contact forms for two different sides of my website, I would like to change the email that the two different contact forms go to. Is there anyway to make them different?

Hi @BB_Tech

Since Shopify doesn’t support multiple email addresses by default, a possible workaround is to use the form’s subject field to differentiate between the two forms and filter the emails in your email client.

First, modify both forms and add a hidden input field with a unique subject for each form. Replace “Subject for Form 1” and “Subject for Form 2” with your desired subject lines.

Form 1:


Form 2:


Next, add the following script to your theme.liquid file just before the closing </body> tag. Replace email1@example.com and email2@example.com with the desired email addresses for each form.


Now, both forms will send emails with unique subject lines that can be filtered in your email client to separate them into different folders or forward them to different email addresses.

For example, in Gmail, you can create filters to search for unique subject lines and forward the emails to the respective email addresses.

Sorry I’m trying to follow this with no luck. I have 2 contact forms for different issues as well. Which file do I put the “Form 1” and “Form 2” code into? Then when I go to the theme.liquid file and put that code in, I don’t see where is the ‘email1@example.com’ and ‘email2@example.com’ that I need to replace?