From ad9f6f291cca638139d1917061af04451ed23529 Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Sun, 14 Apr 2024 19:06:10 +0300 Subject: [PATCH] fix: Fix Issue With Sample --- example/sendMail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/sendMail.php b/example/sendMail.php index 6651bac..0e0ec06 100644 --- a/example/sendMail.php +++ b/example/sendMail.php @@ -10,13 +10,13 @@ $smtp = new SMTPAccount([ AccountOption::PORT => 465, //Replace server address with your mail server address - AccountOption::SENDER_ADDRESS => 'mail.example.com', + AccountOption::SERVER_ADDRESS => 'mail.example.com', //Replace server username with your mail server username AccountOption::USERNAME => 'test@example.com', AccountOption::PASSWORD => 'KnvcbxFYCz77', AccountOption::SENDER_NAME => 'Ibrahim', //Replace sender address with your mail server sender address - AccountOption::SERVER_ADDRESS => 'test@example.com', + AccountOption::SENDER_ADDRESS => 'test@example.com', AccountOption::NAME => 'no-reply' ]);