On Wed, 2008-01-23 at 22:53 +0000, Andrew Doades wrote: > Cheers, > > That was basically the question, what do i put in that to field so the > what I email address I enter to the to field is where the message is > sent to! > > Rajesh Dhawan wrote: > > > > On Jan 23, 5:11 pm, Andrew Doades <[EMAIL PROTECTED]> wrote: > > > >> I now have this as the view: > >> if request.method == 'POST': > >> form = ContactForm(request.POST) > >> if form.is_valid(): > >> topic = form.cleaned_data['topic'] > >> message = form.cleaned_data['message'] > >> to = form.cleaned_data.get('to') > >> sender = form.cleaned_data.get('sender') > >> send_mail( > >> 'message, topic: %s' % topic, > >> message, sender, > >> ['to'] > >> ) > >> > >> I need to have to bottom fields to read what is entered into the ' to ' > >> field, I thought something like % to or something would do the trick!? > >> > > > > I am not sure I understand the question. However, that ['to'] should > > instead be [to] in the send_mail() call. > > > > >
Your emails are very difficult to understand. Please proofread them before hitting the send button, and adjust your formatting and/or code to make it clear when you are referring to code, and when you are just writing. The ambiguous use of the word/variable "to" in your message from 5:11 would be cleared up if you renamed the variable "recipient", or something similar. Your more recent contains one run on sentence that doesn't even make sense if you correct the run on. Rajesh's answer should help with your problem. Remove the quotes from your variable name (to) in the list you pass to send_mail(). Cheers, Cliff --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---