function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
symantecAPsymantecAP 

Workflow to send an email alert using article.

Hi All

 

 

I am trying to send an email alert thru work flow . I need to send the article link in the work flow.

 

email alert workflow that emails the owner of the Article ,2 weeks prior to archive date. The owner of the document should be notified the document will archive with a link to the article in the SFDC Article Management tab.

 

Kindly help

 

Adil

Navatar_DbSupNavatar_DbSup

Hi,

 

You can do this through the workflow. Well your email template should contain link value like this:

 

<a href="https://www.yahoo.com">click here</a>

 

Now first make the rule criteria like this (Don’t forget to select every time record is created or edit and did not matched the previous rule criteria while creating the rule “First option wit radio button”).

 

Archivedate__c != null

 

Archievedate__c is that custom field from which 2 weeks prior to archivedate__c  you want an email should be sent. Add time trigger as per your requirement. Now select workflow action as New email Alert and attached that template with above format for url link.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.