I'm trying to read an email-id value using request.POST.get(). If the post data contains email-id with a '+' symbol, like "[email protected]", it gets read as
"example [email protected]".
I know this is happening because the + symbol is getting decoded as space, but how do I prevent this from happening in this scenario?