Re: error in the order form

2012-08-23 Thread Amyth Arora
The reason you are getting this error is because the 'TO' argument you're passing to send_mail is not a list but a string. you're calling the send_mail function using send_mail(name, email, tema, summa) and here the TO argument you are passing is 'email' which is not a list of recipients but the s

error in the order form

2012-08-23 Thread Владислав Иванов
Developing an order form. Shows the error "to" argument must be a list or tuple Please tell me that I not correct? I need the user to be online to complete this form and the order came to my email *views.py* #-*-coding:utf-8-*- from django.db import models from django import forms from djang