如何使用触发和模板发送短信

时间:2017-11-15 06:44:45

标签: python django

class CMSSmsTemplate(models.Model):
"""
This is the   internal template
Which will have the SMS Trigger field/the SmS body/the SmS Template
"""
  sms_trigger = models.CharField(max_length=128)
  sms_body = models.CharField(max_length=255)
  sms_Body = models.TextField(blank=True, null=True)
  sms_template_name = models.CharField(max_length=128)

我有这个模型,我用来发送我的短信,触发我的短信发送的主要是sms_template_name,我如何有效地使用,触发和发送短信。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

请使用带有芹菜的Django信号(post_save),以便在创建新对象时触发SMS发送过程我认为这是最有效的使用方法。为了便于实现,你可以使用post_save信号来触发短信发送过程,请参考https://medium.com/@andretietz/custom-annotations-with-retrofit-2-8701ca7ce102