# email **Repository Path**: incoparab/email ## Basic Information - **Project Name**: email - **Description**: smtp协议发送电子邮件(C++) - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-05-17 - **Last Updated**: 2023-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 135356/email ###### C++发送电子邮件 **示例:** ``` Smtp smtp( 25, //服务器端口(默认25) "smtp.qq.com", //smtp服务器域名 "xxx@vip.qq.com", //发件人的邮箱地址 "xxxxxx", //发件人密码 "xxx@sina.com", //收件人 "邮件标题", //主题 "邮件内容" //内容 ); ```