123456789101112131415161718192021222324 |
- <%@page import="com.chinacreator.videoalliance.util.SmsSendUtil"%>
- <%@page import="com.chinacreator.videoalliance.util.ConfigUtil"%>
- <%@ page contentType="text/html;charset=UTF-8" %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name=viewport content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0" />
- <meta name=GENERATOR content="MSHTML 8.00.6001.19328" />
- <title>广西取号测试</title>
- </head>
- <body>
- <%
- String result = null;
- try{
- result = SmsSendUtil.sendSms("18692929681", "测试中文短信内容");
-
- }catch(Exception e) {
- result = e.getMessage();
- }
- %>
- <div style="font-size:14px"><%=result %></span>
- </div>
- </body>
- </html>
|