airnativeextensions
  •  Extensions
    • All Extensions
    • Packages
    • Frameworks
    • Adobe AIR
    • Unity
    • Categories
    • Device Hardware
    • Free
    • Media
    • Native Services
    • Native UI Components
    • Open Source
    • SDKs
  • News
  • Showcase
  • Support
    • Documentation
    • Developer docs
    • Tutorials
    • FAQs
    • Contact
    • Contact Us
  • Login
Sign up now

Message

Send emails and SMS!

Send messages using email and SMS.

Adobe AIR  Adobe AIR
iOS  v12.0+ Android  v19+ (32 + 64bit)

$15 (USD)
Discounted for subsequent years

Sign up now

Product Features

Email
Provides ability to compose an email using the native UI
Multiple To, CC and BCC Addresses
Multiple Attachments using a file path reference
Default implementation using a "mailto" link
SMS
Create an SMS and send with the native UI
Send an SMS without UI on Android
Sample project code and ASDocs reference

Available in these packages

Master Collection

Enterprise Support

Deprecated: The Message extension has been deprecated.

The Share extension has all of this functionality available plus access to other sharing methods (such as via other apps).

While this extension will still be available please be aware that we will wind down support and development on the extension. All existing customers have been given access to the Share extension.

If you have any questions or concerns you can contact us at airnativeextensions@distriqt.com.

This 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.

Latest Features

  • Send an SMS with UI on iOS and Android;
  • Send preformatted HTML emails on iOS and Android;

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.

 

Documentation

The following resources are available for developers to guide them through the integration of the extension.

Development Guide

Our developer documentation contains a detailed guide on getting started with the extension. It also documents all of the major features showing you how to quickly and correctly integrate the extension in your application.

Reference

ASDocs document each of the classes, interfaces, events, functions and properties that you will be using. It is the main reference for the extension. If it's not in the guide you will find it here!

Change Log

This contains a record of all the changes we have done to the extension. There are more details in github, referenced with releases but this is publicly available to see the work being done on the extension.

Support

The following resources are for our subscribed users only. We use the issue tracker and wiki on GitHub to provide developer support, development tracking and the most detailed documentation on the usage of the extension.

GitHub Repository*

The GitHub repository gives subscribed users access to the extension, (including all past versions) and is the place to follow the development of the extension, request any features or improvements and to report any issues.

Issues on GitHub*

The issue tracker is the best place to get support. Ask our developers your questions directly! If you are having an issue implementing the extension or if you have found an issue, this is the place to ask!
*Subscribed users only

Community

Code samples

Post gists on GitHub and include the extension ID (com.distriqt.Message) in the file to have your snippet listed here.

Stack Overflow

Make sure you tag your question with distriqt message

Starling Forum

We regularly monitor the Starling forum and many of our users are active there so feel free to ask your questions there.

Quick Examples

Sending an SMS

if (Message.isSMSSupported)
{
Message.service.addEventListener( MessageSMSEvent.MESSAGE_SMS_CANCELLED, smsEventHandler );
Message.service.addEventListener( MessageSMSEvent.MESSAGE_SMS_SENT, smsEventHandler );
Message.service.addEventListener( MessageSMSEvent.MESSAGE_SMS_SENT_ERROR, smsEventHandler );
var sms:SMS = new SMS();
sms.address = "0444444444";
sms.message = "Sending an SMS with the distriqt Message ANE";
Message.service.sendSMSWithUI( sms, false );
}
...
private function smsEventHandler( event:MessageSMSEvent ):void
{
trace( event.type +"::"+ event.details + "::"+event.sms.toString() );
}
// com.distriqt.Message
view raw distriqt.extension.message.sendSMSWithUI.as hosted with ❤ by GitHub
 

Reviews

airnativeextensions.com copyright © 2017

distriqt

terms & conditions privacy license