The django docs outline a couple of ways you can use custom email backends while testing: https://docs.djangoproject.com/en/dev/topics/email/
Another quick and dirty option is to run this command in a console (assuming Linux-variant): sudo python -m smtpd -n -c DebuggingServer localhost:25 All emails will get dumped to your console. -Chris On Mon, May 30, 2011 at 6:40 AM, Nick Lacey <[email protected]>wrote: > Hello, > > I'm testing a Satchmo installation, but I can't progress beyond the > test purchase as I don't have an SMTP server on my machine. I can't > install one on my development machine due to various draconian IT > policies. For my current purposes, I don't care about the email, I > just want to test the rest of the order processing process. > > So - is there a way to temporarily stop Django from trying to send a > confirmation email on purchase? > > Many thanks, > > Nick > > -- > You received this message because you are subscribed to the Google Groups > "Satchmo users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/satchmo-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
