Hey, So I have set a Custom SMTP Server and it said that it successfully updated it but when I try to make a Magic URL via Go-SDK it says "SMTP disabled":
Code to Generate MagicURL:
TypeScript
Account := appwrite.NewAccount(backend.Client)
session, err := Account.CreateMagicURLToken(id.Unique(), email)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
slog.Error("Error creating session", "error", err)
return
}
Did I do something wrong or is there anything else I need to enable
TL;DR
Users are experiencing an issue with SMTP settings even though a custom SMTP server is successfully updated. When trying to generate a Magic URL using Go-SDK, it shows "SMTP disabled." To resolve, developers need to check if the SMTP server is enabled in the system settings.here my SMTP Settings
Recommended threads
- Realtime api and labels as permission
in my tables i set labels as permission and real-time capabilities stopped working. Before when i was having "any" role everything was working. Note: user have...
- how to access the value of account statu...
- Redirect from clicking team invite link ...
Hi all! Pretty new to app development in general so this might be something more generic than appwrite, but I've found (after reading the docs for the Teams API...