Creating a email notification when a new site is created
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2014 07:42 AM
Whenever a new site is created the user has to get an email notification as " A new site named sample is created. Click this link to join the site"
I tried to create a rule and execute a script when a particular site is created
But I am getting the mail as "A new site callednullis created" as subject. It is not showing the site name instead it saying null
I tried to create a rule and execute a script when a particular site is created
var parent = space.getParent();var siteShortName = space.getSiteShortName();var siteGroup = "GROUP_EMAIL_CONTRIBUTORS";var mail = actions.create("mail");mail.parameters.to_many = siteGroup; mail.parameters.subject=" A new site called" +siteShortName +"is created";mail.parameters.text="Login to share to join the site; //execute action against a documentmail.execute(document);
But I am getting the mail as "A new site callednullis created" as subject. It is not showing the site name instead it saying null
Labels:
- Labels:
-
Archive
16 REPLIES 16
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2014 05:54 AM
If my above post does not work, try adding these properties to alfresco-global.properties. Restart the server and then check.
Also, try by putting this code in your js file:
instead of
# Set this value to UTF-8 or similar for encoding of email messages as requiredmail.encoding=UTF-8# Set this value to 7bit or similar for Asian encoding of email headers as requiredmail.header=7bit
Also, try by putting this code in your js file:
mail.parameters.to = "your_email_id";
instead of
mail.parameters.to_many = siteGroup;
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2014 07:37 AM
I found the issue is related to number of members in the group. If the the group email contributor has two members it will send two mails, three members then three and so on
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2014 02:11 AM
Any idea on how to do stop this??
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2014 02:35 AM
Can you share the script (js file) here ? That will give a clear idea.
Secondly, if there are three users in your email contributor group, all those three users have the same email id set on them ?
Secondly, if there are three users in your email contributor group, all those three users have the same email id set on them ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2014 02:57 AM
function sendMail(){var siteGroup = "GROUP_EMAIL_CONTRIBUTORS";var mail = actions.create("mail");mail.parameters.to_many = siteGroup;var url = "Click http://pc1:8080/share/page/site/" + document.properties.name + "/dashboard" + " to join the site";mail.parameters.subject="New Site Created in Community";mail.parameters.text=url;//execute action against a documentmail.execute(document);}sendMail();
This is the script. Find the attached image. These three users were the member of Email_collborators.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2014 02:59 AM
Please find the screen shot of mail I am getting
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2014 08:13 AM
