Loading...
 
Skip to main content

Features / Usability


Re : Mail Notification for Blogs?

posts: 1001 Canada

Check this blog
It has the monitoring option. You must remove the default blog heading completely to get it at the moment. I just commited a fix for that which should be in 1.8.1.

About the automation, somewhere in tiki-register.php you must enter something like that.

$hash = md5'.';
$email = $userlib->get_user_email($user);
$this->query($query,array($user,$event,$object));
$query = "insert into `tiki_user_watches`(`user`,`event`,`object`,`email`,`hash`,`type`,`title`,`url`) ";
$query.= "values(?,?,?,?,?,?,?,?)";
$this->query($query,array($user,"blog_post",blognumber,$email,$hash,"Blog post",$title,"tiki-view_blog.php?blogId=blognumber"));

Change blognumber to what your blog gets. $title can be changed (will appear in user Watches page only I think).

There are no comments at this time.