Email operations

Email operations: Architecture

  • q.sys.UserProfileWS.SendEmail is used to send an email to the user

    • The first non-empty value is used as email address:

      • descr.sys.UserProfileWS.Email field

      • User's login

  • c.sys.UserProfileWS.ChangeEmail command is used to change the s.sys.UserProfileWS.UserProfile.Email

User Email field

  • ~field.Email~❓: is used to store the user's email address

ALTERABLE WORKSPACE UserProfileWS INHERITS sys.ProfileWS (
	DESCRIPTOR UserProfile (
		DisplayName varchar,
    Email varchar, -- <-- New field for storing user's email>
	);
  ...

See also

Last updated

Was this helpful?