Send a new email in Qt
hamishwillee
(Talk | contribs) m (Hamishwillee - Added ArticleMetaDataTemplate) |
m (moved Send a new email in QT to Send a new email in Qt: Moved Send a new email in QT to Send a new email in Qt) |
Revision as of 17:06, 22 October 2011
This code example shows how to send an email using the Qt Mobility messaging API.
//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);

