Open the default Messaging Composer Application

From Qt Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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);