C++
C++
Send Email with hotmail.com, live.com, or outlook.com
See more SMTP Examples
Send email using your Microsoft hotmail.com, live.com, or outlook.com account via the smtp.office365.com SMTP server.See the Guide for Creating an Application to Send Email from Hotmail.com, Live.com, or Outlook.com
Chilkat C++ Downloads
#include <CkMailMan.h>
#include <CkJsonObject.h>
#include <CkEmail.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkMailMan mailman;
mailman.put_SmtpHost("smtp.office365.com");
mailman.put_SmtpPort(587);
mailman.put_StartTLS(true);
// This could be your hotmail.com, live.com, or outlook.com account.
mailman.put_SmtpUsername("yourName@live.com");
// Load the previously saved OAuth2 access token.
CkJsonObject json;
success = json.LoadFile("qa_data/tokens/hotmail.json");
if (success == false) {
std::cout << json.lastErrorText() << "\r\n";
return;
}
mailman.put_OAuth2AccessToken(json.stringOf("access_token"));
CkEmail email;
// Note: If you send an email such as this, it can easily go to your Junk or Trash email folders.
email.put_Subject("This is a test");
email.put_Body("This is a test");
// This could be your hotmail.com, live.com, or outlook.com account.
email.put_From("My Hotmail Account <yourName@live.com>");
success = email.AddTo("Joe Example","joe@example.com");
success = mailman.OpenSmtpConnection();
if (success != true) {
std::cout << mailman.lastErrorText() << "\r\n";
std::cout << "ConnectFailReason = " << mailman.get_ConnectFailReason() << "\r\n";
return;
}
success = mailman.SmtpAuthenticate();
if (success != true) {
std::cout << mailman.lastErrorText() << "\r\n";
return;
}
success = mailman.SendEmail(email);
if (success != true) {
std::cout << mailman.lastErrorText() << "\r\n";
return;
}
mailman.CloseSmtpConnection();
std::cout << "Email Sent." << "\r\n";
}