Subscribe via URL?

Try
http://mydomainname.com/ar/index.php/lists/xxx111yyy222zzz333/subscribe?EMAIL=whatever@domain.com
This will autopopulate the form, but you'd still have to click the form submit button to send the info, otherwise, you can simply send a POST request with the form info:
Code:
<form action="http://mydomainname.com/ar/index.php/lists/xxx111yyy222zzz333/subscribe" method="post">
<input type="hidden" name="EMAIL" value="whatever@domain.com"/>
<button type="submit" value="Subscribe me" />
</form>
 
Back
Top