MyBB Community Forums

Full Version: automatically notify users of a reply? {subscriptions}
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I just plugged in this http://mods.mybb.com/view/automatic-subscriptions
and well I was wondering is there a way to just get users the moment they signed up to be automatically subscribed to threads they post in without them having to click anything?
regards. M
In 'member_register' template, search for:
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
and change to:
<option value="2" selected="selected">{$lang->instant_email_subscribe}</option>
thanks mate Smile