1

所以我正在使用 Satchmo 商店,并且我设置了一个礼券模块,作为在我的网站上购买优惠券的一种方式。但是,当我在选择数量页面上购买超过 1 个时,它只会通过电子邮件向我发送一张礼券,而不是根据我购买的数量发送多张。

这是购买礼券后如何通过电子邮件发送的听众。有人对此有所了解吗?

def coupon_notify(sender, instance, created, **kwargs):
    recipient = instance.purchased_by.email
    buyer = '%s %s' % (instance.purchased_by.first_name, instance.purchased_by.last_name)
    subject = "You Coupon"
    html_content = 'Your code:<br><strong style="font-size:40px; color:#000;">%s</strong>' % (instance.code)
    sender = 'name@email.ca'
    msg = EmailMessage(subject, html_content, sender, [recipient])
    msg.content_subtype = "html"
    msg.send()


def coupon_code_listener():
    save_signals.post_save.connect(coupon_notify,\
        sender=GiftCertificate,dispatch_uid="coupon_notify")
4

1 回答 1

0

我远不是该领域的专家,也没有听众经验......但我会说听众只被调用一次,因为表单也只发布/保存一次。因此,也许您应该查找在模型实例上购买的优惠券数量,然后从那里继续发送多封邮件……或者购买的优惠券数量反映了您被允许使用优惠券/代码的次数?

于 2011-06-12T15:40:24.080 回答