We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shouldn't be the worst, probably should use POCO library or something related.
The text was updated successfully, but these errors were encountered:
Open Source Walkthrough
#define test_gmail_tls CSmtp mail; #if defined(test_gmail_tls) mail.SetSMTPServer("smtp.gmail.com",587); mail.SetSecurityType(USE_TLS); #elif defined(test_gmail_ssl) mail.SetSMTPServer("smtp.gmail.com",465); mail.SetSecurityType(USE_SSL); #elif defined(test_hotmail_TLS) mail.SetSMTPServer("smtp.live.com",25); mail.SetSecurityType(USE_TLS); #elif defined(test_aol_tls) mail.SetSMTPServer("smtp.aol.com",587); mail.SetSecurityType(USE_TLS); #elif defined(test_yahoo_ssl) mail.SetSMTPServer("plus.smtp.mail.yahoo.com",465); mail.SetSecurityType(USE_SSL); #endif mail.SetLogin("***"); mail.SetPassword("***"); mail.SetSenderName("User"); // ...... mail.Send();
Video Example
Sorry, something went wrong.
No branches or pull requests
Shouldn't be the worst, probably should use POCO library or something related.
The text was updated successfully, but these errors were encountered: