EthosCE provides two methods to create links to user-specific pages such as transcripts or profiles.
1. "My" Links (7.6+)
The path "/my/" can be used in links and will be replaced with a user's user ID (UID) after login. For example, if an anonymous user clicks a link to /my/edit/profile, after the user will be redirected to /1234/edit/profile where 1234 is the user's UID.
...
If sending these links in an email, be sure to include the domain. For example, https://example.com/my/edit/profile.
2. Tokens
Tokens will only work when a user is logged in. Thus, they cannot be shared with anonymous users. An example use case would be to add a menu item that will only be available to logged-in users.
...