It would be useful if, after subscribing, the module redirected to a page that can be used to track the conversion (from reader to subscriber). On line 1482 of autoresponder.module, I changed this:

drupal_goto();

To this:

drupal_goto('', array('subscribed' => implode($form_state['values']['set'], ",")));

Now I can add this as a goal to track in Google Analytics. There are better ways, I'm just posting this here so that you can have a look at it and implement it in whatever way you prefer.

Comments

aleksey.tk’s picture

Thanks for your feature request, it can be useful, i will include this functionality in alpha2 release which will be out in a couple of days.

norio’s picture

You're welcome :)