1. 首页
  2. 数据库
  3. 其它
  4. aws sms:通过AWS SNS构建和发送SMS消息 源码

aws sms:通过AWS SNS构建和发送SMS消息 源码

上传者: 2021-04-23 17:02:50上传 ZIP文件 9.33KB 热度 13次
通过AWS SNS发送SMS消息的软件包 介绍 通过AWS SNS发送电子邮件 例子 package main import ( "context" sms "github.com/gofor-little/aws-sms" ) func main () { // Initialize the SMS package. if err := sms . Initialize ( "AWS_PROFILE" , "AWS_REGION" ); err != nil { panic ( err ) } // Build the SMS data. data := sms. Data { SenderID : "ExampleApp" , PhoneNumber : "+61412345678" , Message : "Example Message" , }
用户评论