aws sms:通过AWS SNS构建和发送SMS消息 源码
通过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" , }
文件列表
aws-sms-main.zip
(预估有个14文件)
aws-sms-main
.github
dependabot.yml
145B
workflows
stale.yml
1KB
ci.yml
667B
tests
unit
sms_test.go
641B
integration
暂无评论