开发者

Symbian C++ Email - Code - App Crash

开发者 https://www.devze.com 2023-01-21 04:39 出处:网络
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 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(
                                  "123@gmail.com"),RSendAsMessage::ESendAsRecipientTo);          
   //adding to field
   sendAsMessage.SetBodyTextL(_L("somebody@world.com"));

   TRequestStatus statu开发者_JAVA技巧s;
   //adding attachments
   //  sendAsMessage.AddAttachment(_L("c:\\splash.bmp"),status);
   //   User::WaitForRequest(status);

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


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?

0

精彩评论

暂无评论...
验证码 换一张
取 消