smtp.h
来自「W3100是WIZnet公司专门为以太网互联和嵌入式设备推出的硬件TCP/IP协」· C头文件 代码 · 共 38 行
H
38 行
/*
********************************************************************************
* Wiznet.
* 5F Simmtech Bldg., 228-3, Nonhyun-dong, Kangnam-gu,
* Seoul, Korea
*
* (c) Copyright 2002, Wiznet, Seoul, Korea
*
* Filename : smtp.h
* Verison : 1.5
* Programmer(s): Kim Wooyoul
* Created : 2002/05/28
* Modified : Date - 2002/10/28
* Description - Version UP (1.0 -> 1.5)
* - Use getSocket() function in sockutil.h
* - Remove goto statements in SendMail() function()
* - Type Converion of ServerAddr Variable (u_char --> u_long)
* - Increase Global Memory size(ACCNT, RMAIL,SMAIL, TITLE,Buffer)
* - Add to debug-code
* - Apply new sockutil.h and refined util.h
* Description : SMTP server related functions
********************************************************************************
*/
#ifndef __SMTP_H
#define __SMTP_H
extern void SetMailServerIP(UCHAR * ip); /* Set Mail Server IP Address */
extern void SetAccount(UCHAR * acc); /* Set Mail Account */
extern void SetSMailAddr(UCHAR* mail); /* Set Mail Address of sender */
extern void SetRMailAddr(UCHAR* mail); /* Set Mail Address of recipient */
extern void SetTitle(UCHAR* title); /* Set title of mail */
extern char SendMail(UCHAR* contents); /* send mail */
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?