Skip to content

Commit

Permalink
Merge pull request #24 from WebFiori/dev
Browse files Browse the repository at this point in the history
fix: Fix Issue With Sample
  • Loading branch information
usernane authored Apr 14, 2024
2 parents e142560 + ad9f6f2 commit e5b61fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/sendMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]);

Expand Down

0 comments on commit e5b61fb

Please sign in to comment.