24 lines
470 B
Go
24 lines
470 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/animenotifier/arn"
|
||
|
"github.com/animenotifier/arn/mailer"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
notification := &arn.Notification{
|
||
|
Title: "Boku dake ga Inai Machi",
|
||
|
Message: "Episode 16 has been released!",
|
||
|
Image: "https://media.notify.moe/images/anime/large/11110.webp",
|
||
|
Link: "https://notify.moe/anime/11110",
|
||
|
}
|
||
|
|
||
|
err := mailer.SendEmailNotification("e.urbach@gmail.com", notification)
|
||
|
|
||
|
if err != nil {
|
||
|
fmt.Println(err)
|
||
|
}
|
||
|
}
|