Namespaces
Variants
Actions
Revision as of 09:52, 11 April 2011 by chintandave_er (Talk | contribs)

Send a new email in Qt

Jump to: navigation, search

Overview

This code example shows how to use messaging API in Qt for symbian. Code demonstrate how to send email. Code example uses Messaging APIs. Purpose of this code example is to show how to use Qt and QtMoblity APIs to send emails.

//Create message service objects
QMessageServiceAction* msgAction = new QMessageServiceAction ( this);
 
// Create a new email
QMessage msg;
msg.setType(QMessage::Email);
// Add required parameters
msg.setTo (QMessageAddress("qt@forum.nokia.com",QMessageAddress::Email));
msg.setSubject("QT email example");
 
//Set message body
msg.setBody("This is test message!");
 
// Add Attachments
QStringList attachments;
attachments.append("abc.jpg");
msg.appendAttachments(paths);
 
//Send email message
msgAction->send(msg);
333 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved