From 658db4d0517d756a28e3d77c0b0f7ac1f0bdb135 Mon Sep 17 00:00:00 2001 From: Jack Merrill Date: Sun, 22 Sep 2024 18:02:48 -0400 Subject: [PATCH] update email sent msg --- internal/commands/util/verify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/util/verify.go b/internal/commands/util/verify.go index 9f5bc47..2cf51cb 100644 --- a/internal/commands/util/verify.go +++ b/internal/commands/util/verify.go @@ -106,7 +106,7 @@ func (c *VerifyCommand) Exec(ctx shireikan.Context) error { ctx.GetSession().ChannelMessageEditComplex(&discordgo.MessageEdit{ ID: m.ID, Channel: ctx.GetChannel().ID, - Embed: embed.NewSuccessEmbed(ctx).SetTitle("Sent Verification Email").SetDescription("Waiting for you to verify...").AddField("Expires", fmt.Sprintf("", expires.Unix()), false).MessageEmbed, + Embed: embed.NewSuccessEmbed(ctx).SetTitle("Sent Verification Email").SetDescription("Waiting for you to verify...\n\n**Make sure to check your spam folder!**").AddField("Expires", fmt.Sprintf("", expires.Unix()), false).MessageEmbed, }) if err != nil {