You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-oscar
Hello guys, what I need is to make oscar send an email to the customer whenever I change the shipping status to "Shipped" from the dashboard. For that I created an "order.shippingeventtype" with code "SHIPPING_PLACED" and associated it with the code field on a created "customer.communicationeventtype". This does not seem to be sufficient, so what am I missing?
- Alexandre
Web Architect
unread,
Mar 9, 2016, 4:04:06 AM3/9/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-oscar
In order/processing.py, inherit EventHandler and override handle_shipping_event to send the mail.
Cheers.
Alexandre Provencio
unread,
Mar 11, 2016, 9:32:42 PM3/11/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-oscar
That's correct I got it. Just for the record I used Dispatch class there to send the email.