電子メールアプリケーションの変更を同期して変更し、サーバー電子メールの自動変更を変更したいと思います。例: - 私は電子メールアプリケーションで未読メッセージを読んだ後、自動サーバー電子メールは未読メールを読んでメールを読むように変更しました。AndroidメールでJavaメールを使用してアプリケーションメールをサーバー電子メールに同期する方法
私の電子メールアプリケーションがサーバーの電子メールへの接続の電子メールアプリケーションのために使用されているメールのjarファイル、activation.jarの、追加のjarファイルを使用 、次のコードを使用してい...
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", "imaps");
props.put("mail.smtp.starttls.enable","true");
Authenticator auth = new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication(){
return new PasswordAuthentication("USEREMAILID","PASSWORD ");
}
};
sessioned= Session.getDefaultInstance(props, auth);
store = sessioned.getStore("imaps");
store.connect("smtp.gmail.com","USEREMAILID","PASSWORD ");
inbox = store.getFolder("inbox");
inbox.open(Folder.READ_ONLY);
FlagTerm ft = new FlagTerm(new Flags(Flags.Flag.SEEN), false);
UNReadmessages = inbox.search(ft);
メールをローカルに保存するサーバとローカルドライブの間で同期の処理を扱うソースコード全体を記述できますか? –