文件名称:aws-sms:通过AWS SNS构建和发送SMS消息
文件大小:9KB
文件格式:ZIP
更新时间:2024-04-27 22:04:50
golang aws sms aws-sdk-go aws-sns
通过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
----.github()
--------dependabot.yml(145B)
--------workflows()
----tests()
--------unit()
--------integration()
----LICENSE(1KB)
----client.go(1021B)
----.gitignore(305B)
----sms.go(905B)
----go.sum(4KB)
----README.md(2KB)
----data.go(213B)
----go.mod(253B)