Newbie
Newbie

Reputation: 361

Custom email notification with link - sitecore

I created a workflow as below, i want to send email with the link to the content approvers group when something is submitted? Can someone point me from where should i start with? which is the function that should be overridden ? Any help is appreciated

enter image description here

Thanks,

GT

Upvotes: 1

Views: 1486

Answers (1)

Scott Mulligan
Scott Mulligan

Reputation: 126

Here is a good example of how to create a custom workflow email that can be sent to users in a particular Sitecore role (and the user who last edited the content item). http://techmusingz.wordpress.com/2014/04/25/workflow-notifications-in-sitecore-roles-and-users/

You can link to a specific content item in the Sitecore client using the following method but you need to already be logged in to the Sitecore client for this to work (Otherwise you are just directed to the Sitecore login page and won't be redirected to the item after login).

/sitecore/shell/Applications/Content%20Manager/default.aspx?fo={id}&la={language}&vs={version}&mo=preview

  • fo - The item to open in the Sitecore client
  • la - The language to open (optional)
  • vs - The version to open (optional)
  • mo - preview (optional)

Upvotes: 1

Related Questions