mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-13 19:29:37 +08:00
66 lines
1.4 KiB
TypeScript
66 lines
1.4 KiB
TypeScript
import {Plugin, Cordova} from './plugin';
|
|
|
|
/**
|
|
* Options for sending an SMS
|
|
*/
|
|
export interface SmsOptions {
|
|
|
|
/**
|
|
* Set to true to replace \n by a new line. Default: false
|
|
*/
|
|
replaceLineBreaks?: boolean;
|
|
|
|
android?: SmsOptionsAndroid;
|
|
|
|
}
|
|
|
|
export interface SmsOptionsAndroid {
|
|
|
|
/**
|
|
* Set to "INTENT" to send SMS with the native android SMS messaging. Leaving it empty will send the SMS without opening any app.
|
|
*/
|
|
intent?: string;
|
|
|
|
}
|
|
|
|
/**
|
|
* @name SMS
|
|
* @description
|
|
*
|
|
* Requires Cordova plugin: cordova-plugin-sms. For more info, please see the [SMS plugin docs](https://github.com/cordova-sms/cordova-sms-plugin).
|
|
*
|
|
* @usage
|
|
* ```ts
|
|
* import {SMS} from 'ionic-native';
|
|
*
|
|
*
|
|
*
|
|
* // Send a text message using default options
|
|
* SMS.send('416123456','Hello world!');
|
|
*
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
plugin: 'cordova-sms-plugin',
|
|
pluginRef: 'sms',
|
|
repo: 'https://github.com/cordova-sms/cordova-sms-plugin',
|
|
platforms: ['Android', 'iOS', 'Windows Phone 8']
|
|
})
|
|
export class SMS {
|
|
|
|
/**
|
|
* Sends sms to a number
|
|
* @param phoneNumber {string|Array<string>} Phone number
|
|
* @param message {string} Message
|
|
* @param options {SmsOptions} Options
|
|
* @returns {Promise<any>} Resolves promise when the SMS has been sent
|
|
*/
|
|
@Cordova()
|
|
static send(
|
|
phoneNumber: string | string[],
|
|
message: string,
|
|
options?: SmsOptions
|
|
): Promise<any> { return; }
|
|
|
|
}
|