1👍
✅
Use getlist
to retrieve multiple values.
request.POST.getlist('email_list[]')
This is documented behavior:
If the key has more than one value,
__getitem__
() returns the last value.
Source:stackexchange.com