Message

Adobe AIR native extension

Send messages from AIR using email and SMS

The extension is available here: com.distriqt.Message

Documentation

Message

The Message extension provides functionality to send an email with attachments and to send SMS.

The simple API allows you to quickly integrate sending emails and sms in your AIR application in just a few lines of code. Identical code base can be used across all supported platforms allowing you to concentrate on your application and not device specifics.

We provide complete guides to get you up and running with messaging quickly and easily.

Features

As with all our extensions you get access to a year of support and updates as we are continually improving and updating the extensions for OS updates and feature requests.

if (Message.isMailSupported)
{
	Message.service.sendMailWithOptions(
		"Subject",
		"Body of email",
		"test@distriqt.com" );
}