Goal Trigger on forms submit:
- Create a Sitecore form.
- Select Submit button.
- Click on the "+" icon and select the "Trigger Goal".

Email experience manager does not support CMS-only mode.
Email Experience Manager (EXM), there are two types of email campaigns and each has a set of templates that contain default content and layout.
While there is neither a class to extend nor an interface to implement, a convention must be followed in order for Sitecore to be in order for a class to be used as an event handler.The class must have a method that accepts two parameters and return void:object - represents the object that holds a collection of the various event listenersEventArgs - holds the parameters being passed to the event handlerThe following is an example of a custom processor.public class MyEventHandlers{public void OnItemSaved(object sender, EventArgs args){//do something}}
An event itself is nothing more than a block of XML in the /configuration/Sitecore/events section of a Sitecore patch file.
The following is an example of a custom event definition.
<testing:myevent>
<processor type="Testing.Events.SetVal1, Testing" />
<processor type="Testing.Events.SetVal2, Testing" />
</testing:myevent>
The following is an example of raising an event.
public class EventRaiser{public void RaiseEvent(){var args = new Testing.Events.MyEventArgs();Sitecore.Events.Event.RaiseEvent("testing:myevent", args);}}
About the Publishing Service module The Publishing Service module is an optional replacement for the existing Sitecore publishing methods....