Skip to content

Instantly share code, notes, and snippets.

@magicdude4eva
Created February 1, 2019 09:59
Show Gist options
  • Save magicdude4eva/76d96869f9122b3a816e520f0a83c1c3 to your computer and use it in GitHub Desktop.
Save magicdude4eva/76d96869f9122b3a816e520f0a83c1c3 to your computer and use it in GitHub Desktop.
SMTP Test via PHPMailer
<?php
/*
To test: Run on any version of PHP, then install "PHPMailer" via composer:
composer require phpmailer/phpmailer
Test login via: https://outlook.office365.com/ecp/
*/
$fromAddress = 'XXX@domain.com';
$recipientAddress = 'YYY@recipientdomain.com';
use PHPMailer\PHPMailer\PHPMailer;
require './vendor/autoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->SMTPDebug = 4;
$mail->Host = 'XXX-domain.protection.outlook.com';
$mail->Username = 'Outlook-Login-Email';
$mail->Password = 'Outlook-Login-Password';
$mail->Port = 25;
$mail->SMTPAuth = true;
$mail->AuthType='LOGIN';
$mail->isHTML(false);
$mail->setFrom($fromAddress);
$mail->addAddress($recipientAddress);
$mail->Subject = 'SMTP Test message';
$mail->Body = 'This is an email test';
if (!$mail->send()) {
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message sent!';
}
?>
@magicdude4eva
Copy link
Author

magicdude4eva commented Dec 29, 2019

Donations are always welcome

🍺 Please support me: If the above helped you in any way, then follow me on Twitter or send me some coins:

(CRO)    cro1w2kvwrzp23aq54n3amwav4yy4a9ahq2kz2wtmj (Memo: 644996249) or 0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C (Cronos)
(USDC)   0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C
(BTC)    3628nqihXvw2RXsKtTR36dN6WvYzaHyr52
(ETH)    0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C
(BAT)    0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C
(LTC)    MQxRAfhVU84KDVUqnZ5eV9MGyyaBEcQeDf
(Ripple) rKV8HEL3vLc6q9waTiJcewdRdSFyx67QFb (Tag: 1172047832)
(XLM)    GB67TJFJO3GUA432EJ4JTODHFYSBTM44P4XQCDOFTXJNNPV2UKUJYVBF (Memo ID: 1406379394)

Go to Curve.com to add your Crypto.com card to ApplePay and signup to Crypto.com for a staking and free Crypto debit card.

Use Binance Exchange to trade #altcoins. Sign up with Coinbase and instantly get $10 in BTC. I also accept old-school PayPal.

If you have no crypto, follow me at least on Twitter.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment