TemplateInterface.php 352 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by CRMEB.
  4. * User: 136327134@qq.com
  5. * Date: 2019/4/9 17:43
  6. */
  7. namespace app\core\implement;
  8. /*
  9. * 模板消息接口类
  10. *
  11. * */
  12. interface TemplateInterface
  13. {
  14. public static function sendTemplate($openId,$tempCode,$dataKey,$formId=null,$link=null,$defaultColor=null);
  15. public static function getConstants($key=null);
  16. }