I have created a class
public class ECMSendMessageProcessor
{
public void Process(SendMessageArgs args)
{
}
}
And added a pipeline on "SendEmail"
<SendEmail>
<processor type="Namespace.ClassName.Method,Assembly" />
While i send email am facing Could not resolve type name "Namespace.ClassName.Method,Assembly"
Reference link http://www.craigtaylor.us/2014/10/injecting-tracking-pixel-into-sitecore-ecm.html I tried changing the pipeline, class etc. But always showing this error.
When specifying your custom processor, don't include the method name. Change your example to this: