1 Star 0 Fork 4

nbsnail/ccfast

forked from zhouxiang/ccfast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sendemail.h 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhouxiang 提交于 2015-02-26 18:27 . init project
#ifndef SENDEMAIL_H
#define SENDEMAIL_H
#include <stdlib.h>
#include <sstream>
#include <iostream>
#include <string.h>
///
/// \brief g_str_sendemailpy
///sendmail脚本在系统中的位置
const char* g_str_sendemailpy = "/etc/ccfast/sendmail.py";
///
/// \brief The SendEmail class
/// 使用system系统调用运行一个python脚本来发送邮件来上报一些消息
///
class SendEmail
{
public:
///
/// \brief send
/// \param title_ 邮件标题
/// \param message_ 邮件内容
/// \return
///
static int send(const std::string& title_, const std::string& message_)
{
std::stringstream _ss;
_ss << "python " << g_str_sendemailpy << " '" << title_ << "' '" << message_ << "'";
std::string _cmd(_ss.str());
const char* _cstrcmd = _cmd.c_str();
return system(_cstrcmd);
}
};
#endif // SENDEMAIL_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nbsnail/ccfast.git
git@gitee.com:nbsnail/ccfast.git
nbsnail
ccfast
ccfast
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385