arckinteractive/twilio_sms

Twilio SMS API

1.1.0 2019-08-01 11:34 UTC

This package is auto-updated.

Last update: 2024-08-29 04:42:52 UTC


README

Elgg 2.1

特性

  • 使用 Twilio API 发送短信

用法

此插件为 notifications_sms 插件提供短信通知交付处理器。

它还可以以编程方式发送短信消息

notify_user($member->guid, 0, $subject, $message, [
		'action' => 'something',
		'object' => $entity,
		'url' => $entity->getURL(),
		'summary' => $summary,
		'sms' => $sms, // Provide custom text of the SMS notification, if not provided will fallback to 'summary' and then to 'subject'
], ['email', 'site', 'sms']);
elgg_send_sms('+1123434343', 'Hello there');