How can I trigger custom email automation with my unique signup form?

How can I trigger custom email automation with my unique signup form?

ankit7659
Shopify Partner
3 0 0

Hello Shopify Community,

I am currently facing a challenge with my custom newsletter automation. I have created a custom newsletter and I want my custom automations to be triggered when someone signs up through my custom signup form. I have two newsletters working on my website, but I want this specific automation to work only with my custom signup form.

I understand that the default newsletter is embedded before the changes I have made, and the system works with the data it is fed. However, I am looking for a way to make my custom signup form work with the system. I was advised that I might need to process the coding for the email automation in a specific section, but I am not well-versed in coding.

 

 


<!-- Your page content goes here -->
<div class="overlay" id="overlay"></div>
<div class="popupbg" id="popup-box">
<span id="closePopup" style="cursor: pointer; position: absolute; top: 10px; right: 15px;"></span>
<div class="content" id="popupContent">
{% form 'customer' %}
<h2>GET<span class="off_12"> 10% </span>OFF <br><span class="purch_1">your first purchase!</span></h2>
<p>We sell games, toys, and<br> all kind of nerdy stuff!</p>
<div class="bxflx_31">
<div class="email">
<!-- <label for="email">Email</label> -->
<input type="email" name="contact[email]" placeholder="Your email" id="emailInput" />
</div>
<div class="submit">
<input type="submit" value="Submit" id="submitButton" />
</div>
</div>
<div class="checkbox">
<input type="checkbox" name="exampleCheckbox">
<p>Send me updates about new products, deals and discount codes.</p>
</div>
{% endform %}
</div>
</div>

Replies 0 (0)