03-24-2014 07:42 AM
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 document
mail.execute(document);
03-25-2014 05:54 AM
# Set this value to UTF-8 or similar for encoding of email messages as required
mail.encoding=UTF-8
# Set this value to 7bit or similar for Asian encoding of email headers as required
mail.header=7bit
mail.parameters.to = "your_email_id";
mail.parameters.to_many = siteGroup;
03-25-2014 07:37 AM
03-26-2014 02:11 AM
03-26-2014 02:35 AM
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 document
mail.execute(document);
}
sendMail();
03-26-2014 02:59 AM
03-26-2014 08:13 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.