I am trying to integrate email verification during a new user registration. I am in the beggining of this feature implementation. For this purposes in settings.py
i set the following settings
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'youremail@gmail.com'
EMAIL_HOST_PASSWORD = 'yourpassword'
EMAIL_PORT = ????
and here is my question which EMAIL_PORT i should specify if i am working on my local computer