1234567891011121314 |
- # -*- coding: utf-8 -*-
- # !/usr/bin/env python
- class SmsSender(object):
- def send(self, phoneNumber, templateId, msg, productName, verifyCode = False):
- """
- :param phoneNumber:
- :param templateId:
- :param msg:
- :param productName:
- :return: dict
- """
- raise NotImplementedError('must implement send function.')
|