金笛短信中间件Linux 版本使用介绍(2)

金笛软件,能简单才不简单

3。注册

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

第一次运行 jdsmsd 后,在日志文件生成注册申请号码,把注册申请号码发送给我们,

我们生成注册码然后发回给您。配置文件在 /etc/jdsmsd.conf,打开配置文件,在

License= 后面输入注册码,注意在“=” 后面不要有空格。

4。MySQL 数据表定义

!!!注意:数据库和表都采用 utf8 编码!!!

~

短信发送列表:

HoHo_SendList(

SendID

int(1) auto_increment not null primary key,

PhoneNumber char(14) not null,

Content

text

not null,

SendPrio

int(1) default '5' not null,

SendFlag

int(1) default '0' not null

) default charset = utf8;

字段解释:

SendID 短信的发送 ID,不用管,自己递增

PhoneNumber 发送目标号码,只能是一个号码,如果想要短信群发可以多插入几

次记录

Content

短信内容,最多容纳 32768 个中英文字,一条短信最多发 70 个中英

文字符

SendPrio 默认值是 5,当前版本没有实现有限级功能,随时升级添加此功能

SendFlag 发送标志,0 为发送短信,1 为发送成功,2 为发送失败,3 发送号码

非法

一般来说,插入记录只需要填写 PhoneNumber 和 Content 字段就可以了

~

发送成功列表:

HoHo_SendSucc(

SendID

int(1) auto_increment not null primary key,

PhoneNumber char(14) not null,

Content

text

not null,

SendPrio

int(1) not null,

SendFlag

int(1) not null,

SendRepo

char(45) not null,

SendTime

char(45) not null

) default charset = utf8;

发送失败列表:

HoHo_SendFail(

SendID

int(1) auto_increment not null primary key,

PhoneNumber char(14) not null,

Content

text

not null,

SendPrio

int(1) not null,

SendFlag

int(1) not null,

SendRepo

char(45) not null,

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxzyz.html