Open the default Messaging Composer Application

From Qt Wiki
Revision as of 21:07, 28 June 2015 by Wieland (talk | contribs) (Cleanup)
Jump to navigation Jump to search

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

The following code snippet shows how to open the default messaging composer application of the platform using QMessageService of Qt Mobility. The example loads SMS that is waiting to be edited and sent by the user.

Code Snippet

Include the required headers:

#include <QMessageService>
#include <QMessage>

Enable messaging at pro file:

CONFIG += mobility
MOBILITY += messaging

Implementation:

QMessageService pMessageManager = new QMessageService(this);
QMessage message;
message.setType(QMessage::Sms);
message.setBody("Foo");
m_pMessageManager->compose(message);