How will I pass parameters such as, user id in hyper link?

2020-06-22T13:22:55.053+00:00

I have a HTML page where there is one hyperlink. This html email will be sent to users via Microsoft outlook (I have written the mail function using flask python) and when users will click on hyperlink on the email body, it will eventually open another page. This page will be same but, the content of the page will be different for different users based on the users' email id. This another page will be hosted on Azure web portal.

Right now, my requirement is to pass the user email ID through hyperlink so, I can display different content based on email ID. Can it be done through hyperlink on the outlook email body? As, you know that outlook uses Microsoft Word as rendering engine so, will it be difficult to pass parameter through hyperlink ?

Or, can I pass the email ID through my flask function while sending the mails?

Any suggestion will be very helpful.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,860 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ryan Hill 25,486 Reputation points Microsoft Employee
    2020-06-22T23:04:05.89+00:00

    Hi @MITRADebarthaGECoreTechCyber-2843,

    I would simply just HTTP POST the email ID along with any other data in the request body to the your flask app.

    Hope this helps.

    0 comments No comments