SMS-Gateway、sipgate.de、sipgate.com の XMl-RPC API を介して SMS を送信する簡単な方法を提供するプラグインがあります。
grails install-plugin sipgate
コマンドを使用してインストールします
'conf/Config.groovy' の account-data-placeholders を編集します。
grails.plugins.sipgate.username = 'YOUR_USERNAME'
grails.plugins.sipgate.password = 'YOUR_PASSWORD'
//According to E.164,
例: 「4922112345678」grails.plugins.sipgate.phoneNumber = 'YOUR_PHONE'
次に、「sipgateService
」を挿入して SMS を送信します
def sipgateService
def phoneNumber = '4917712345678' //phoneNumber according to E.164 specification //working alternative: def phoneNumber = '+1-719-555-1234'
def result = sipgateService.sendSMS(phoneNumber, 'This is my Text to send!')
result? println 'Sending Successful': println 'Sending failed'