This commit is contained in:
teddy
2025-04-21 14:23:15 +07:00
parent a69b44625e
commit 062279e5d0
2 changed files with 13 additions and 1 deletions

View File

@@ -227,6 +227,12 @@ func Route(db *gorm.DB) {
sendTo := request.To
for _, v := range request.CC {
if v != "" {
sendTo = append(sendTo, request.CC...)
}
}
type Data struct {
Message string
}