Re: Can't Send Mail.

2006-10-09 Thread shidan
Thanks, that was it, luckily I have cygwin installed which comes with a mail server. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegrou

Re: Can't Send Mail.

2006-10-09 Thread Karen Tracey
James Bennett wrote: > In order for email to work, you do have to have a valid email server > to connect to, either running locally or on a remote server. And if it's remote, you need to set EMAIL_HOST to point to it in your settings file. --~--~-~--~~~---~--~~ Y

Re: Can't Send Mail.

2006-10-09 Thread James Bennett
On 10/9/06, shidan <[EMAIL PROTECTED]> wrote: > Im getting the following exception: > > Request Method: POST > Request URL:http://localhost:8000/signup/ > Exception Type: error > Exception Value:(10061, 'Connection refused') > Exception Location: C:\Python24\lib\smt

Can't Send Mail.

2006-10-09 Thread shidan
Hi, when I use the following: send_mail(email_subject, email_body, '[EMAIL PROTECTED]', [new_user.email],fail_silently=False,) Im getting the following exception: Request Method: POST Request URL:http:/