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">

 

Action address is linked to the console address. If the console address is xyzw.espsrv.com, correct action is http://xyzw.espsrv.it/frontend/subscribe.aspx. Parameters for calling subscribe.aspx function are described below

 

Campo e-mail (obbligatorioEmail field (mandatory):

 

Code Block
languagehtml/xml
<input name="email" type="text" size="60" maxlength="100"> 


Campi relativi alle liste di distribuzione (obbligatorio): <input Fields related to distribution lists (mandatory):

  

<input type="hidden" name="list" value="1"> 
Nel caso si volesse far scegliere all'utente più di una lista sarà possibile elencarle di seguito utilizzando lo stesso nome per i vari campi, ad esempio

 

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:


<input name="list" type="checkbox" value="2">Seconda lista <br>


<input name="list" type="checkbox" value="3">Terza lista <br> Se si volesse iscrivere l'utente a due liste senza dare la scelta, si può usare: 

 

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


<input type="hidden" name="list" value="1,2,3"> 
Nel caso siano selezionate più liste, sarà inviata una sola email di richiesta conferma, che però abiliterà l'iscrizione per tutte le liste specificate. Per convenzione, l'email di conferma e le pagine messaggi utilizzate saranno esclusivamente quelle della prima lista specificata. Nell'esempio sopra, quello della Lista 1.
Nel campo "value" dovrà essere inserito l'ID della lista in cui iscrivere l'utente; questo codice Lista si può trovare nel menu Impostazioni Modifica Liste, oppure direttamente nel menu. Nella figura sotto, la Lista Turismo ha value=3 
Image Removed
Figura 11:

 

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)

The “value” field must contain the ID of the list the user subscribes to; list ID can be found at the page Settings > Edit lists or looking at the dropdown menu at the top left of the page.


Image Added
menu a tendina per la selezione della lista

...