Hey all I am trying to send out an outlook email from Java using the JACOB COM activex code.
This is currently my code:
import com.ibm.rational.test.lt.kernel.services.ITestExecutionServices;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import java.util.HashMap;
import java.util.Map;
public class MailOut implements com.ibm.rational.test.lt.kernel.custom.ICustomCode2 {
Map<String, Object> params = new HashMap<String, Object>();
String attachment[] = new String[1];
String to[] = new String[1];
public MailOut() {
}
public String exec(ITestExecutionServices tes, String[] args) {
//---------------------------------------------------------------------
params.put("subject", "Test subject");
params.put("body", "Please see attached.");
attachment[0] = "C:\\temp\\about_blank.pdf";
params.put("attachments", attachment);
to[0] = "[email protected]";
params.put("to", to);
OutlookJACOB mail = new OutlookJACOB();
mail.createEmail(params);
//---------------------------------------------------------------------
return "";
}
public class OutlookJACOB
{
private ActiveXComponent ol;
private Dispatch outlook;
private Object mapi[] = new Object[1];
private Object email[] = new Object[1];
public OutlookJACOB()
{
mapi[0] = "MAPI";
email[0] = 0;
ol = new ActiveXComponent("Outlook.Application");
//ol.setProperty("Visible", new Variant(true));
outlook = ol.getObject();
Dispatch.call(outlook,"GetNamespace",mapi).toDispatch();
}
public void createEmail(Map<String, Object> params)
{
Dispatch mail = Dispatch.call(outlook,"CreateItem",email).toDispatch();
Dispatch.put(mail, "Subject", params.get("subject"));
Dispatch.put(mail, "HTMLBody", params.get("body"));
String to[] = (String[]) params.get("to");
String attachments[] = (String[]) params.get("attachments");
if(to != null)
{
if(to.length>0)
{
String _to = "";
for(Object t : to)
{
_to += t + ";";
}
Dispatch.put(mail, "To", _to);
}
}
if(attachments != null)
{
if(attachments.length>0)
{
Dispatch attachs = Dispatch.get(mail, "Attachments").toDispatch();
for(Object attachment : attachments)
{
Dispatch.call(attachs, "Add", attachment);
}
}
}
//Dispatch.call(mail, "Send");
try {
Dispatch.call(mail, "Send");
} catch (com.jacob.com.ComFailException e) {
e.printStackTrace();
}
}
}
}
The line error is this line:
Dispatch.call(mail, "Send");
and the error states:
com.jacob.com.ComFailException:
A COM exception has been encountered:
At Invoke of: Send
Description: 80004004 / Operation aborted
Now I know my code is correct because if I do:
Dispatch.call(mail, "Save");
Then it does put that email I created into the Draft folder in Outlook:
So, what in the gobble gobble am I missing here in order to send it and not save it?
You could refer to the below code:
For more information, Please refer to this link:
JACOB - Java COM Bridge