Hey guys, sorry if this has been asked before. I'm...
# ktor
a
Hey guys, sorry if this has been asked before. I'm learning ktor and trying to set up signup/login functionality. I have the setup working and want to send a confirmation email from the server to the user's provided email, which the user can click and it opens a
Your email is confirmed
webpage, and sends a request to the server about the confirmation. How do I do that? Can someone link me to some docs or blogs. Thanks!
t
You’ll probably use a java library to send the email with a link that has a token attached to the user as GET parameter, and then a web page that handles the request when the link is clicked in the email
a
Thanks Tosin. I'll give that a try