String logonGuid = "0B1FBC04A6D94A45A6C5E2AC8915B698";
String sessionKey = "C26CF959E1434E31B7F9DA89829369B4";
String projectGuid = "73671509FA5C43ED8FC4171AD0298AD2";
CmsClient client = new CmsClient(logonGuid);
Project project = client.getProject(sessionKey, projectGuid);
Page currentPg = project.getPageById("34009");
boolean withFollowingPages = false;
boolean withRelated = true;
PublishingJob job = new PublishingJob(currentPg, withFollowingPages, withRelated);
job.addToPublish("projectVariantGuid1,projectVariantGuid2,projectVariantGuid3", ",", "languageVariantGuid");
// currentPg.publishAllCombinations(withFollowingPages, "projectVariantGuids", "separator", "languageVariantGuids");
job.setMailReceiver(client.getConnectedUser());
job.start();
job.getNumberOfPublishingMails();
}