Skip to content

Commit

Permalink
Merge branch 'Shuffle:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
shalin24999 authored Mar 25, 2022
2 parents fc1c8ca + 743fe68 commit 50742fe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions email/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Using curl to test whether you SMPT mails are getting delivered.
```
curl --ssl smtp://1.1.1.1:587 --mail-from [email protected] --mail-rcpt [email protected] --upload-file email.txt --user 'example:Password123' -k -v
```

## email.txt : Should contain the below
```
From: <[email protected]>
To: <[email protected]>
Subject: an example.com example email
Date: Thu, 24 Mar 2022 11:29:16
Welcome to this example email. What a lovely day
```

0 comments on commit 50742fe

Please sign in to comment.