Finder
Finder

Reputation: 8721

Symbian C++ Email - Code - App Crash

I am using the following code for send the email in symbian c++ (I am using the Symbian_3_SDK_v0_9_en for developing in Windows 7)

I got the application crash when the line "sendAsMessage.CreateL(send, KUidMsgTypeSMTP);" reached.

Please assist me.. How to solve this. I am very new to the symbian c++. Thanks in advance

    RSendAs send;
    User::LeaveIfError(send.Connect());
    CleanupClosePushL(send);

    RSendAsMessage sendAsMessage;

    sendAsMessage.CreateL(send, KUidMsgTypeSMTP);
    CleanupClosePushL(sendAsMessage);

    sendAsMessage.SetSubjectL(_L("Welcome back to symbian"));
    sendAsMessage.AddRecipientL(_L(
                                  "[email protected]"),RSendAsMessage::ESendAsRecipientTo);          
   //adding to field
   sendAsMessage.SetBodyTextL(_L("[email protected]"));

   TRequestStatus status;
   //adding attachments
   //  sendAsMessage.AddAttachment(_L("c:\\splash.bmp"),status);
   //   User::WaitForRequest(status);

    sendAsMessage.SendMessageAndCloseL();
    CleanupStack::Pop();
    CleanupStack::PopAndDestroy();

Upvotes: 0

Views: 456

Answers (1)

KevinD
KevinD

Reputation: 1789

As is usual "I got the application crash" is not enough information - how did the application crash? What is the Panic code and Panic reason?

Upvotes: 1

Related Questions