Explicitly mention it is id of email and not email id for --email (#3329)

It was easier to confuse `email ID` with `email id` and think it is the email address.  This commit makes it clear that it is the id of the email message.

---

#### Does this PR need a docs update or release note?

- [ ]  Yes, it's included
- [ ] 🕐 Yes, but in a later PR
- [x]  No

#### Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [ ] 🐛 Bugfix
- [x] 🗺️ Documentation
- [ ] 🤖 Supportability/Tests
- [ ] 💻 CI/Deployment
- [ ] 🧹 Tech Debt/Cleanup

#### Issue(s)

<!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. -->
* #<issue>

#### Test Plan

<!-- How will this be tested prior to merging.-->
- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
Abin Simon 2023-05-05 22:10:40 +05:30 committed by GitHub
parent 7b83626adb
commit eab5510c03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ func AddExchangeDetailsAndRestoreFlags(cmd *cobra.Command) {
fs.StringSliceVar(
&EmailFV,
EmailFN, nil,
"Select emails by email ID; accepts '"+Wildcard+"' to select all emails.")
"Select email messages by ID; accepts '"+Wildcard+"' to select all emails.")
fs.StringSliceVar(
&EmailFolderFV,
EmailFolderFN, nil,

View File

@ -250,7 +250,7 @@ To restore the selected email, use the following command.
```powershell
# Restore a selected email
.\corso restore exchange --backup <id of your selected backup> --email <email ID>
.\corso restore exchange --backup <id of your selected backup> --email <email message ID>
```
</TabItem>
@ -258,7 +258,7 @@ To restore the selected email, use the following command.
```bash
# Restore a selected email
./corso restore exchange --backup <id of your selected backup> --email <email ID>
./corso restore exchange --backup <id of your selected backup> --email <email message ID>
```
</TabItem>
@ -268,7 +268,7 @@ To restore the selected email, use the following command.
`# Restore a selected email
docker run --env-file $HOME/.corso/corso.env \\
--volume $HOME/.corso:/app/corso ghcr.io/alcionai/corso:${Version()} \\
restore exchange --backup <id of your selected backup> --email <email ID>`
restore exchange --backup <id of your selected backup> --email <email message ID>`
}</CodeBlock>
</TabItem>