文章分类 -  消息通知

摘要:comm="要发送的内容" curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxx' \ -H 'Content-Type: application/json' \ -d "{'msgtype': 'text','te 阅读全文
posted @ 2022-01-26 18:27 Linux_小白
摘要:def dd(dd_token, dd_secret, dd_txt): timestamp = str(round(time.time() * 1000)) secret = dd_secret # 钉钉secret secret_enc = secret.encode('utf-8') stri 阅读全文
posted @ 2022-01-26 18:27 Linux_小白
摘要:1.安装mailx邮件服务 yum -y install mailx 若有其他邮件服务器建议先停止常见如下 service sendmail stop chkconfig sendmail off service postfix stop chkconfig postfix off 2.配置邮件服务 阅读全文
posted @ 2021-04-08 20:02 Linux_小白