Change Email
Last updated
Was this helpful?
Last updated
Was this helpful?
As sys.Workspace.ProfileOwner I want to change my Email.
AuthZ: role.sys.Workspace.ProfileOwner
Params
NewEMail
Errors
Email is mailformed // See similar message
Flow:
Update UserProfileWS.UserProfile.Email
Email Sending:
The impl_applyinvitation.go
file contains code to send invitation emails using SMTP configuration: .
The impl.go
file in the verifier
package sends email verification codes: .
SMTP Configuration:
Email Verification Tokens:
The implementation of Storage_SendMail
:
The smtp
package defines the SMTP configuration in types.go
: .
Functions related to SMTP configuration are in impl.go
: .
The userprofile.vsql
file includes commands for sending email verification codes: .
Can be found in the pkg/sys/storages/impl_send_mail_storage.go
file. You can view the implementation .