Hi
is it possible to create a textfield in the optout confirmation to enter the reason why unsubscribing?
regards ,
simon
Opt-Out Reason possible?
Moderator: moderator
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
extended form
Sure, you can add fields to the unsubscribe form like this (see table content):
Code: Select all
<form name="unsubform" action="http://www.openemm.org:8080/form.do" method="post">
<input type="hidden" name="agnCI" value="1">
<input type="hidden" name="agnFN" value="unsubconfirm">
<input type="hidden" name="agnUID" value="$!agnUID">
<table>
<tr><td>No time</td><td><INPUT TYPE="radio" NAME="reason" VALUE="1"></td></tr>
<tr><td>Not interested</td><td><INPUT TYPE="radio" NAME="reason" VALUE="2"></td></tr>
<tr><td>Old hat</td><td><INPUT TYPE="radio" NAME="reason" VALUE="3"></td></tr>
<tr><td>Too long</td><td><INPUT TYPE="radio" NAME="reason" VALUE="4"></td></tr>
<tr><td>Too brief</td><td><INPUT TYPE="radio" NAME="reason" VALUE="5"></td></tr>
<tr><td valign=top colspan="2"> </td></tr>
<tr><td valign=top colspan="2">Other:<br><TEXTAREA COLS=30 ROWS=5 NAME="other_reason"></TEXTAREA></td></tr>
</table>
<input type="submit" value="Unsubscribe">
</form>
OpenEMM Maintainer