Add email notification subscription option for new Blog Posts in Sitefinity -
Add email notification subscription option for new Blog Posts in Sitefinity -
sitefinity (version 6.3.5) has feature allow users subscribe comments notified when there new comments added via email. there anyway same thing blog posts themselves?
i thinking similar functionality in wordpress sign notified when new blog post added blog. i've seen rss feed looking way allow users notified via email.
it looks possible, not without custom coding.
http://bit.ly/sf-customlogicforsfwidgets
create .class file in sitefinity project solution must find out how inherit 1 widget. illustration inheriting sitefinity login control. to find needed path should inherited (telerik.sitefinity.web.ui.publiccontrols.logincontrol
) go administration->settings->advanced->toolboxes->pagecontrols->sections->login->tools->login
, find textbox: command clr type or virtual path
. in can take path telerik.sitefinity.web.ui.publiccontrols.logincontrol
other properties not needed example. in .class file created in step 1 inherit login control. save file , build sitefinity project (if project website project build not needed). now register new widget modified login control. using system; using system.collections.generic; using system.linq; using system.web; namespace sitefinitywebapp.custom { public class class1 : telerik.sitefinity.web.ui.publiccontrols.logincontrol { protected override void loginform_authenticate(object sender, system.web.ui.webcontrols.authenticateeventargs e) { // custom stuff here before base of operations phone call // phone call base of operations login class when done base.loginform_authenticate(sender, e); // custom stuff here after base of operations phone call } } }
blogs sitefinity email-notifications
Comments
Post a Comment