Hello everyone Help please, teach python django I need to send a message to an e-mail at a certain time Began to teach pynsq but I can not figure it out Sample code, send a simple message
def mail(request): form = MailForm() if request.method == 'POST': form = MailForm(request.POST) if form.is_valid(): name = form.cleaned_data.get('name') descriptions = form.cleaned_data.get('descriptions') time = form.cleaned_data.get('time') send_mail(name, descriptions, settings.EMAIL_HOST_USER, ['info@mail.ru']) How to cause pynsq what to prescribe?