mirror of https://github.com/arendst/Tasmota.git
33 lines
875 B
C++
33 lines
875 B
C++
#ifndef __SENDEMAIL_H
|
|
#define __SENDEMAIL_H
|
|
|
|
//#define DEBUG_EMAIL_PORT
|
|
|
|
#include <base64.h>
|
|
#include "WiFiClientSecureLightBearSSL.h"
|
|
|
|
class SendEmail
|
|
{
|
|
private:
|
|
const String host;
|
|
const int port;
|
|
const String user;
|
|
const String passwd;
|
|
const int timeout;
|
|
const bool ssl;
|
|
const int auth_used;
|
|
// use bear ssl
|
|
BearSSL::WiFiClientSecure_light *client;
|
|
|
|
String readClient();
|
|
void a3_to_a4(unsigned char * a4, unsigned char * a3);
|
|
int base64_encode(char *output, const char *input, int inputLen);
|
|
public:
|
|
SendEmail(const String& host, const int port, const String& user, const String& passwd, const int timeout, const int auth_used);
|
|
bool send(const String& from, const String& to, const String& subject, const char *msg);
|
|
void send_message_txt(char *msg);
|
|
~SendEmail() {client->stop(); delete client;}
|
|
};
|
|
|
|
#endif
|