Skip to content

Instantly share code, notes, and snippets.

@kaeawc
Created November 20, 2014 21:31
Show Gist options
  • Save kaeawc/8464e10ca397d5dd57dd to your computer and use it in GitHub Desktop.
Save kaeawc/8464e10ca397d5dd57dd to your computer and use it in GitHub Desktop.
mandrill.messages.send_template(template_name='welcome-new-user', template_content=[], message={'to':[{'email': 'kaeawc.farore@gmail.com'}]}, send_at=future_time)
# [{u'_id': u'ae905120f7194c1fb6d9e529db3fc353',
# u'email': u'kaeawc.farore@gmail.com',
# u'reject_reason': None,
# u'status': u'scheduled'}]
mandrill.messages.list_scheduled(to='kaeawc.farore@gmail.com')
# [{u'_id': u'ae905120f7194c1fb6d9e529db3fc353',
# u'created_at': u'2014-11-20 21:26:36',
# u'from_email': u'hello@hinge.co',
# u'send_at': u'5058-11-20 14:17:00',
# u'subject': u'Welcome to Hinge!',
# u'to': u'kaeawc.farore@gmail.com'}]
mandrill.messages.cancel_scheduled(id=u'ae905120f7194c1fb6d9e529db3fc353')
# {u'_id': u'ae905120f7194c1fb6d9e529db3fc353',
# u'created_at': u'2014-11-20 21:26:36',
# u'from_email': u'hello@hinge.co',
# u'send_at': u'5058-11-20 14:17:00',
# u'subject': u'Welcome to Hinge!',
# u'to': u'kaeawc.farore@gmail.com'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment