SendEmail pipeline showing "Could not resolve type name error" while adding pipeline- sitecore emailcampaign

288 Views Asked by At

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.

2

There are 2 best solutions below

2
On

When specifying your custom processor, don't include the method name. Change your example to this:

<SendEmail>
  <processor type="Namespace.ClassName,Assembly" />
2
On

You should just use just the ClassName in your declaration rather than adding the method on the end e.g

 <SendEmail>
      <processor type="Namespace.ClassName, Assembly" />

The process() method is the default method for a pipeline processor. If you wanted to use another method other than process you can add Method="yourmethod" to the declaration.