__init__.py 387 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # !/usr/bin/env python
  3. class SmsSender(object):
  4. def send(self, phoneNumber, templateId, msg, productName, verifyCode = False):
  5. """
  6. :param phoneNumber:
  7. :param templateId:
  8. :param msg:
  9. :param productName:
  10. :return: dict
  11. """
  12. raise NotImplementedError('must implement send function.')