tags:

views:

270

answers:

1

Hi all... I am trying to add an account to E-mail database ,Below is the way i'm trying ...

Account account = new Account(mContext);
account.setDescription("acc added thr prog"); 
account.setAutomaticCheckIntervalMinutes(10);
account.setEmail("[email protected]");
account.setDraftsFolderName("Drafts");
account.setOutboxFolderName("OutBox");
account.setSentFolderName("Sent");
account.setTrashFolderName("Trash");
account.setName("Tester");
account.setNotifyNewMail(true);
account.setSenderUri("smtp+ssl+://[email protected]:[email protected]");
account.setStoreUri("imap+ssl+://[email protected]:[email protected]");
account.setDeletePolicy(10);
account.setVibrate(true);
mPrefer = Preferences.getPreferences(getInstrumentation().getContext());
account.save(mPrefer);
Email.setServicesEnabled(mInstrumenatation.getTargetContext());

This code compiles successfully but account will not be created.

A: 
    account.setSenderUri(mContext, "smtp+ssl+://UserName%40gmail.com:[email protected]");
    mAccount.setStoreUri(mContext, "imap+ssl+://UserName%40gmail.com:[email protected]");

These are two important fields that you need add along with the above fields. These Uri's provides a way for your account to connect to internet.

This configuration is for POP3 type of account . If you know similar config for "Exchange account" please inform me , i am waiting for your reply .

Kinds & Regards Santhosh Kumar H.E

Santhosh