プログラムで電子メールを送信したいと思います。そのために、私は以下のコードを書いた:Blackberryでプログラムで電子メールを送信するには?
if(field == m_btnSend)
{
Store store = Session.getDefaultInstance().getStore();
Folder[] folder = store.list(Folder.SENT);
Folder sent = folder[0];
Message msg = new Message(sent);
Address receipent[] = new Address[1];
try
{
receipent[0] = new Address("[email protected]", "Arindam");
msg.addRecipients(Message.RecipientType.TO, receipent);
msg.setSubject("Test Mail");
msg.setContent("This mail is to remind you that programmatically we can send the mail");
msg.setPriority(Priority.HIGH);
Transport.send(msg);
}
catch (Exception e)
{
e.printStackTrace();
}
}
私はMDSシミュレータで実行しています。今私はシミュレータのブラウザでメールを開くと、このメールをメールインボックスで見たいと思っています。それはどのように可能ですか?
ありがとうございました。
ねえ、私はcode..iが既にを示しています。そして、それは正常に動作しています。しかし、どうすれば私のメールでそれを得ることができますか? –
あなたはどういう意味ですか?しかし、どうすれば私のメールでそれを得ることができますか?あなたはデバイスでテストしたいですか? –
私はデバイスでテストしたくありません。私はBlackBerry EmailとMDS Servicesシミュレータ4.1.2を使用しています。 ESSシミュレーターでは、パスワードとユーザー名を要求しています。私は取得していない、私はそこに与える必要がある資格情報は何ですか。 –