| | |
| | | // 模板 |
| | | private static final String TEMPLATE_CODE = "SMS_489660108"; |
| | | |
| | | private static final String TEMPLATE_CODE_SELLER = "SMS_491135055"; |
| | | |
| | | |
| | | public static void sendSuccessMessage(String phone,String code) { |
| | | Map<String, String> param = new HashMap<>(3); |
| | |
| | | sendSms(phone,SIGN_NAME,TEMPLATE_CODE,param); |
| | | } |
| | | |
| | | // 提醒卖家 |
| | | public static void sendSuccessMessageSeller(String phone) { |
| | | Map<String, String> param = new HashMap<>(3); |
| | | sendSms(phone,SIGN_NAME,TEMPLATE_CODE_SELLER,param); |
| | | } |
| | | |
| | | public static void main(String[] args) { |
| | | sendSuccessMessage("17828262728","123456"); |
| | | sendSuccessMessageSeller("17828262728"); |
| | | } |
| | | |
| | | /** |