Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Subscription form action:


 

 

Code Block
languagehtml/xml
<form method="post" action="http://esempio.emailsp.net/frontend/subscribe.aspx">

 

...


Fields related to distribution lists (mandatory):  


Code Block
languagehtml/xml
<input type="hidden" name="list" value="1"> 

 

If you wish to let the user choose more than one list, it is possible to list them using the same name every time, for example:

 

Code Block
languagehtml/xml
<input name="list" type="checkbox" value="2">Seconda lista <br>

...




<input name="list" type="checkbox" value="3">Terza lista <br> 

 

If you wish to subscribe a user to more than a list, without him choosing one of them, you can use:

Code Block
languagehtml/xml
<input type="hidden" name="list" value="1,2,3"> 

 

In case a user subscribes to more than a list, the system will send just one confirmation email, which will enable the subscription to all the lists. Conventionally, the system will use the confirmation email and the message pages of the first of the enabled lists (list 1 in the example above)

...