Dan O'Shea
Member
I have created a registration form so that subscribers to a website can register. I can of course have this form post to Mailwizz which I prefer for the double opt in.
1. Is there a way I can tie in the mailwizz database table to the Users of the website?
2. I suppose the question is, where does the database table reside of this particular list?
3. Which raises the question, if a web visitor registers in a double opt-in list, I assume the registrant's information is not posted into the table until he opts in?
4. And does this appear doable?
Thank you!
1. Is there a way I can tie in the mailwizz database table to the Users of the website?
2. I suppose the question is, where does the database table reside of this particular list?
3. Which raises the question, if a web visitor registers in a double opt-in list, I assume the registrant's information is not posted into the table until he opts in?
4. And does this appear doable?
Thank you!
<form action="http://mailer.theskywatergroup.com/index.php/lists/...../subscribe" method="post" accept-charset="utf-8" target="_blank">
<div class="form-group">
<label>First name</label>
<input type="text" class="form-control" name="FNAME" placeholder="" value=""/>
</div>
<div class="form-group">
<label>Last name <span class="required">*</span></label>
<input type="text" class="form-control" name="LNAME" placeholder="" value="" required />
</div>
<div class="form-group">
<label>Email <span class="required">*</span></label>
<input type="text" class="form-control" name="EMAIL" placeholder="" value="" required />
</div>
<div class="form-group">
<label>Phone Number <span class="required">*</span></label>
<input type="text" class="form-control" name="PHONE" placeholder="" value="" required />
</div>
<div class="clearfix"><!-- --></div>
<div class="actions">
<button type="submit" class="btn btn-primary btn-submit">Subscribe</button>
</div>
<div class="clearfix"><!-- --></div>
</form>
<div class="form-group">
<label>First name</label>
<input type="text" class="form-control" name="FNAME" placeholder="" value=""/>
</div>
<div class="form-group">
<label>Last name <span class="required">*</span></label>
<input type="text" class="form-control" name="LNAME" placeholder="" value="" required />
</div>
<div class="form-group">
<label>Email <span class="required">*</span></label>
<input type="text" class="form-control" name="EMAIL" placeholder="" value="" required />
</div>
<div class="form-group">
<label>Phone Number <span class="required">*</span></label>
<input type="text" class="form-control" name="PHONE" placeholder="" value="" required />
</div>
<div class="clearfix"><!-- --></div>
<div class="actions">
<button type="submit" class="btn btn-primary btn-submit">Subscribe</button>
</div>
<div class="clearfix"><!-- --></div>
</form>