朋友们,我使用下面的代码发送邮件。 我在JDE5.0中使用ESS测试它不起作用。 所以请给我一些解决方案。
import net.rim.blackberry.api.mail。; import net.rim.blackberry.api.mail.event。; import net.rim.device.api.system。*; 公共类BasicMail扩展Application { 私人商店; static void main(String args []){ BasicMail app = new BasicMail(“a”); app.enterEventDispatcher(); } BasicMail(String s) { //从默认邮件会话中获取商店。 Store store = Session.getDefaultInstance()。getStore();
//检索已发送的文件夹 Folder [] folders = store.list(Folder.SENT); Folder sentfolder = folders [0];
//创建新邮件并将其存储在已发送文件夹中 消息msg =新消息(sentfolder); 地址收件人[] =新地址[1];
尝试{ 收件人[0] =新地址(“poovavin@gmail.com”,“poovannan”);
//add the recipient list to the message
msg.addRecipients(Message.RecipientType.TO, recipients);
//set a subject for the message
msg.setSubject("Test email");
//sets the body of the message
msg.setContent("This is a test email from my BlackBerry Wireless Handheld");
//sets priority
msg.setPriority(Message.Priority.HIGH);
//send the message
Transport.send(msg);
} catch(例外我){ 通信System.err.println(我); } }
}
答案 0 :(得分:0)