Thanks for the reply Raj, I appreciate it.
I'm looking at the code below. While I'm pretty technical, but I'm not an engineer at the company.
Can you give me some context what this is suppose to do.
I've copied the Java code below. It looks like you are passing in four values: User, BlogCampaign, Subject and Content). You are setting tokens, which looks promising.
At the end you are calling schedule campain which is also promising.
(is this API code itself? or sample code if we are running Java in our app, which we're not).
Thanks in advance. I look forward to the additional info.
Pat-
privatebooleansendEmail(Useruser,BlogCampaignbc,Stringsubject,
Stringcontent){
booleanretVal=false;
MarketoUtilitymu=newMarketoUtility();
Datedt=newDate();
Logger.debug("About to schedule email");
List<Attrib>tokenList=newArrayList<Attrib>();
Attribtoken1=MktowsUtil.objectFactory.createAttrib();
token1.setName("my.subject");
token1.setValue(subject);
tokenList.add(token1);
Attribtoken2=MktowsUtil.objectFactory.createAttrib();
token2.setName("my.content");
token2.setValue(content);
tokenList.add(token2);
retVal=mu.scheduleCampaign(user,dt,bc,tokenList);
returnretVal;
}