📄 smtp.h
字号:
/*
********************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -