Blackberry: Send email

Source: Internet
Author: User

Sending email in Blackberry

By
Tommy» Sat Jun 18,201 AM

Sending email in Blackberry

Code:
Select All
import net.rim.blackberry.api.mail.Message;
   import net.rim.blackberry.api.mail.Address;
   
   // Create Message object
   Message message = new Message(folder_sent);
   
   // Set Subject of the Email
   message.setSubject("Test Message");
   
   // Set Body of the Email
   message.setContent("Hi! This is a test Email...");
   
   // Add Recipients of the Email
   Address recs[] = new Address[2];
   recs[0] = new Address("email1@something.com","Recipient 1 Name");
   recs[1] = new Address("email2@example.com","Recipient 2 Name");
   message.addRecipients(Message.RecipientType.TO, recs)
Code:
Select All
import net.rim.blackberry.api.mail.Transport;
   try {
     Transport.send(message);
   } catch(MessagingException me) {
     System.out.println(me.getMessage());
   }
Tommy
Posts:100
Joined:Thu dec 02,201 0 pm

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.