sgallego
sgallego

Reputation: 318

HTML email Blackberry

I have the following code to open the Blackberry email composer with a predefined email:

Message m = new Message();
m.setContent("Body");
m.setSubject("Subject");

Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, new MessageArguments(m));

Can I put HTML code as the email content? I want to have some bold text and a web link.

Upvotes: 1

Views: 282

Answers (1)

Nate
Nate

Reputation: 31045

If you look at this BlackBerry forum, it looks like people are having trouble with using Message.setContent(String). You might want to try adding the message content as a multipart html part.

Here's some example code for that. That one is standard Java, though, so it's just meant to give you a rough idea of what's involved with multipart messages.

Here's a BlackBerry multipart example. I would think you could do this, by setting the content type of your body part to text/html.

Upvotes: 2

Related Questions