Yes, it does send a confirmation email. Make sure your system is setup to
send emails.
Here's a simple script you can use to run an smtp server just to see what is
getting sent -
#!/usr/bin/env python
import smtpd
import asyncore
server = smtpd.DebuggingServer(('127.0.0.1', 1025), None)
asyncore.loop()
-Chris
On Sun, Jan 25, 2009 at 10:06 PM, Shankar Dhanasekaran <
[email protected]> wrote:
>
> Hello,
> When a customer makes an order, does satchmo send an automatic
> confirmation email? I tried in my development server, but I dont seem
> to get an order email?
>
> Thanks,
> Shakthi
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---