Not sure if this intentional or not, but in Django 1.8.4 the PasswordResetForm's save function only passes a dictionary as the context to "send_mail()".
Because of that, there is now way to add any extra information (i.e. from a RequestContext).
Can anyone say if this is done for some security reason or if the context dictionary should be made into a RequestContext via "make_context"?