- Posts: 74
COMMUNITY FORUM
Multi-Notify support
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
I have acquired a couple of days ago Multi-Notify (1 month of support).
Actually I need to ask simple questions but the official website (K2joom.com) doesn't work.
My questions are:
1 - Is it possible to make a subscription button valid for all the categories and sub-categories at same time?
2- Is it possible to insert the title of new item in the email notification?
Please let me know how to contact the support.
Thank you
Giulia
Please Log in or Create an account to join the conversation.
- william white
-
- Offline
- Platinum Member
- Posts: 3722
2.Look in the component - emails. There are default emails that are sent. There should be a pdf file with your package that details how to address the various objects and the item title is one of them.
Simon's site is down at the moment, but im sure hes working on it and will be back up soon.. Plz send friend request and pm if you need more detailed help or a copy of the pdf file
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
Thank you for you fast answer.
Please read my remarks:
1- Maybe I have not been clear: I have just set to On/yes the parameter about Category in Multy- Notify configuration (I don’t care about the other notification because I’m only interested to receive a notification when a new article is published). Now I see for each category and each sub-category the “subscribe” button, but I want to see an unique “subscribe” button valid for all the categories (and sub-categories) in my Knowledge Base. Is it possible?
2- Do you mean that if I want to see the item title and an introtext I need only to add the text below?
$this->body = "Title: ".$this->item->title;
$this->body = "Content: ".$this->item->introtext;
Let me know
Please Log in or Create an account to join the conversation.
- william white
-
- Offline
- Platinum Member
- Posts: 3722
If not pm me and i will get the authors to send it to you
You have to edit the notification email and both title and introtext are supported. You will have to play around with the email to get it to work correctly
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
$this->body = "Title: ".$this->item->title;
$this->body = "Content: ".$this->item->introtext;
For the first matter I suppose to have to wait for Simon
Please Log in or Create an account to join the conversation.
- Felix K.
-
- Offline
- New Member
- Posts: 8
if u're not sure try to find out whats in the variable "this" just by typin:
"echo '<pre>';
print_r($this);
echo '</pre>';
this gives u information about what is in the object.
another important thing:
i started a thread 4 days ago about mutlinotitfy and a problem with receiving subscription notifications with not autimatically published comments. seems that these both things dont work together..
somebody knows if thats correct? simon? do u know if that is normal? i explained it here: community.getk2.org/forum/topics/multinotify-bug-found
thanks!!
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
Thank you for your information.
Regarding your problem, I don't know actually I use MultiNotify only for new pubblished item. I think you have to ask to Simon but his website is still down.
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
I cannot find exactly where I have to customize the email text to send when a new article has been published.
I have checked the pdf user guid but it is not clear which file I have to modify.
Pleas can anyone help me?
Thank you
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
Hello,
I cannot find exactly where I have to customize the email text to send when a new article has been published.
I have checked the pdf user guid but it is not clear which file I have to modify.
Pleas can anyone help me?
Thank you
Please Log in or Create an account to join the conversation.
- Simon Wells
-
- Offline
- Platinum Member
- Posts: 955
The site is now been up on a new server for a few weeks, so please login to your account and submit a ticket where we would be able to provide you some 1 to 1 support.
William thanks for helping out.
Simon
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
But at moment my support period is expired even if I have lost several days when your website was down and so I have not used my acquired web support at all.
Actually I have problem with email configuration, because it seems that my setting are ignored in Multimotify.
I have configured the email category as below but I receive only the notification with link to article as default, could you help me?
////This is for email subject//
$this->subject = "New item submission in '".$this->category->name."' category on ".$this->siteName;
////This is for email body//
$this->body = "A new item has been added: ".$this->item->title;$this->body.= "<br/>";$this->body = "link: ".$this->item->link;$this->body.= "<br/>";$this->body.= "Link to '".$this->category->name."' category : ".$this->category->link;
Please Log in or Create an account to join the conversation.
- Jiliko.net
-
- Offline
- Platinum Member
- Posts: 567
There's just a missing dot (.) in line #3 , your code for the email body should be :
$this->body = "A new item has been added: ".$this->item->title;$this->body.= "<br/>";$this->body.= "link: ".$this->item->link;$this->body.= "<br/>";$this->body.= "Link to '".$this->category->name."' category : ".$this->category->link;
Olivier
Please Log in or Create an account to join the conversation.
- Giulia Magnesa
-
Topic Author
- Offline
- Senior Member
- Posts: 74
Do I have to add the dot in line #1 too?
Please Log in or Create an account to join the conversation.