forked from yanjiujun/smtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smtp.h
49 lines (41 loc) · 1.1 KB
/
smtp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @file smtp.h
*
* Created on: 2014年4月28日
* Author: [email protected]
*
* @brief smtp发送邮件,多线程安全。linux下使用gcc编译。c99。
*
*
*/
#ifndef SMTP_H_
#define SMTP_H_
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @brief 使用smtp协议发送邮件。不做参数检查,外部自己处理好。
* @param domain 域名
* @param port 端口号
* @param user_name 用户名
* @param password 密码
* @param subject 标题
* @param content 邮件内容
* @param to 发送目标
* @param to_len 有多少个目标
* @return 如果发送成功返回0,否则返回一个正数表示错误原因。
*
* @par Sample Code:
* @code
* smtp_send("smtp.163.com",25,"[email protected]","mypassword","email-subject","email-content",
* "[email protected]");
* @code
*
*/
int smtp_send(const char* domain,int port,const char* user_name,const char* password,
const char* subject,const char* content,const char** to,int to_len);
#ifdef __cplusplus
}
#endif /* end of extern "C" */
#endif /* SMTP_H_ */