Link to add email address

I have links in my admin section to multiple online resources ( ie google analytics) . Just wanted to know if I can pass in my account email with the link to?

( so I can open up the website with the correct account)… I’ll type the password in manually.

Thanks

That depends entirely on the site you’re storing the link to, not your app. You could add those attributes as part of the querystring

?name=bob&email=bob%40foo.bar

Or any other scheme that site permits. But this is something you can’t control without building something fairly fragile (changes on their end will break your site).

Walter