How to send Java MimeMultipart via Exchange Server
I am using javamail api and I have to send email through Exchange server and then embed image on the email body. How to send embed image in MimeMultipart into EmailMessage using Exchange? I have successfully send the same email using SMTP.
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
javamail exchangewebservices
add a comment |
I am using javamail api and I have to send email through Exchange server and then embed image on the email body. How to send embed image in MimeMultipart into EmailMessage using Exchange? I have successfully send the same email using SMTP.
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
javamail exchangewebservices
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46
add a comment |
I am using javamail api and I have to send email through Exchange server and then embed image on the email body. How to send embed image in MimeMultipart into EmailMessage using Exchange? I have successfully send the same email using SMTP.
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
javamail exchangewebservices
I am using javamail api and I have to send email through Exchange server and then embed image on the email body. How to send embed image in MimeMultipart into EmailMessage using Exchange? I have successfully send the same email using SMTP.
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
EmailMessage msg = new EmailMessage(service);
msg.setSubject(emailSubject);
msg.getReplyTo().add(emailAdmin);
msg.getToRecipients().add(emailAddress);
// This mail has 2 part, the BODY and the embedded image
MimeMultipart multipart = new MimeMultipart("related");
//1st part (the message)
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message,"text/html; charset=UTF-8");
multipart.addBodyPart(messageBodyPart);
// second part (the image)
messageBodyPart = new MimeBodyPart();
DataHandler h = null;
String base64 = configuration.getImageBase64();
//Base64.decodeBase64(string | bytes)
byte decode = Base64.decodeBase64(base64.getBytes());
InputStream stream = new ByteArrayInputStream(decode);
try
h=new DataHandler(new ByteArrayDataSource(stream,"application/octet-stream"));
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
messageBodyPart.setDataHandler(h);
messageBodyPart.setHeader("Content-ID", "image");
messageBodyPart.setHeader("Content-Type", "image/jpeg; name=image.jpg");
messageBodyPart.setHeader("Content-Disposition", "inline");
// add image to the multipart
multipart.addBodyPart(messageBodyPart);
// put everything together
msg.setContent(multipart);////how to set multipart into msg?
synchronized (msg)
msg.send();
javamail exchangewebservices
javamail exchangewebservices
asked Nov 14 '18 at 9:35
ailhaddinailhaddin
112
112
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46
add a comment |
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53296979%2fhow-to-send-java-mimemultipart-via-exchange-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53296979%2fhow-to-send-java-mimemultipart-via-exchange-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The simplest answer is to configure your Exchange server to allow SMTP so you don't need to use EWS. If that's not possible, you'll need someone familiar with the EWS APIs to explain how to create attachments using those APIs.
– Bill Shannon
Nov 14 '18 at 22:37
Thank you for your answer and idea. I found the solution.
– ailhaddin
Nov 21 '18 at 7:48
Can you update this question with your own answer? Thanks.
– Bill Shannon
Nov 21 '18 at 21:46