Pop3 mtm retrieving only headrs!!!

Login to reply to this topic.
Tue, 2005-03-29 14:27
Joined: 2004-12-09
Forum posts: 78
Hi all I am using the POP3_IMAP4_Email_Example
I use the phone settings in which I give the option of downloading both the headers and the body of the mail . It selects all the settings but it doesn,t takes the RETRIEVE setting of the phone which is to download both the header and the message.  Any idea how the application can download the full body.

Thanks in advancce

Tue, 2005-03-29 15:13
Joined: 2004-12-09
Forum posts: 78
Pop3 mtm retrieving only headrs!!!
it downoads only headers but no bodies So how can I download both the header and the body as well.
Thanks again in advance
Wed, 2005-03-30 11:09
Joined: 2004-12-03
Forum posts: 192
Pop3 mtm retrieving only headrs!!!
Code:
CEmailAccounts *emailAccounts = CEmailAccounts::NewLC();
CImPop3Settings *popSettings = new(ELeave) CImPop3Settings;
CleanupStack::PushL(popSettings);

emailAccounts->LoadPOPServiceSettingsL(service,*popSettings);
popSettings->SetGetMailOptions(EGetPop3EmailMessages);
emailAccounts->SavePOPServiceSettingsL(service,*popSettings);

CleanupStack::PopAndDestroy(2);
Wed, 2005-03-30 15:34
Joined: 2004-12-09
Forum posts: 78
Pop3 mtm retrieving only headrs!!!
Thanks for the reply code works   Cheezy
Mon, 2005-06-27 12:05
Joined: 2005-06-10
Forum posts: 19
Re: Pop3 mtm retrieving only headrs!!!
Hi

Can u tell me how to retrieve the access point for E-Mail?.I am getting a list of Access Points using CApSelect class..How can i get a default access point for E-Mail?
Mon, 2005-06-27 15:43
Joined: 2004-12-03
Forum posts: 192
Re: Pop3 mtm retrieving only headrs!!!
Code:
emailAccounts->LoadPOPServiceSettingsL(service, *popSettings, *theIAPP);
if (theIAPP->NumberOfIAPs() > 0)
{
theChoice = theIAPP->IAPPreference(0).iIAP;
}
Tue, 2005-07-05 04:54
Joined: 2005-06-10
Forum posts: 19
Re: Pop3 mtm retrieving only headrs!!!
hi

i am uisng Series60 7.0s and i dont find any class like CEmailAccounts.

Is there anyother class similar to this?

Tue, 2005-07-05 08:11
Joined: 2004-12-03
Forum posts: 192
Re: Pop3 mtm retrieving only headrs!!!
use
CImIAPPreferences::RestoreL(CMsvStore& aMessageStore)
CImPop3Settings::RestoreL(CMsvStore& aMessageStore)
Thu, 2005-07-07 07:05
Joined: 2005-07-06
Forum posts: 2
Re: Pop3 mtm retrieving only headrs!!!
Hi all I am using the emailpop3 in S60_2nd_FP2 Series60Ex

Like Girish Sharma , I want my apps can  downloading both the headers and the body of the mail.
So how can I download both the header and the body as well ? sorry for repeat question. I'm just getting started to learn Symbian. Thanks ....
Mon, 2006-03-20 10:31
Joined: 2004-09-23
Forum posts: 3
Re: Pop3 mtm retrieving only headrs!!!
I want to know how to get the currently used mailbox ?

-And how to get
-mailbox name?
-Outgoing mail server?

-timo
  • Login to reply to this topic.