Pop-up newsletter signup form?

You might use:

HTML:
<form action="http://www.domain.com/sendy/subscribe" method="POST" accept-charset="utf-8">
    <label for="name">Name</label><br/>
    <input type="text" name="name" id="name"/>
    <br/>
    <label for="email">Email</label><br/>
    <input type="text" name="email" id="email"/>
    <br/>
    <input type="hidden" name="list" value="xxx-LISTID-Check in Sendy-xxx"/>
    <input type="submit" name="submit" id="submit"/>
</form>
 
I ran across a list builder tool called Sumome (https://sumome.com/app/list-builder). This is exactly what I'm looking for. Would it be possible to incorporate this in Xenforo? I really would like to harvest e-mail addresses from those visitors that never get around to register with my site.

Capture.webp
 
From what I can see this code snippet show go into the HTML header:

Code:
<script src="//load.sumome.com/" data-sumo-site-id="a57ce16606048ad621ee0cd9aa9c8e3c01f1b41d0575213233e1aa5774df6902" async="async"></script>
 
Top Bottom