spo mail send¶
Sends an e-mail from SharePoint
Usage¶
m365 spo mail send [options]
Options¶
-u, --webUrl <webUrl>
- Absolute URL of the site from which the email will be sent
--to <to>
- Comma-separated list of recipients' e-mail addresses
--subject <subject>
- Subject of the e-mail
--body <body>
- Content of the e-mail
--from [from]
- Sender's e-mail address
--cc [cc]
- Comma-separated list of CC recipients
--bcc [bcc]
- Comma-separated list of BCC recipients
--additionalHeaders [additionalHeaders]
- JSON string with additional headers
-h, --help [help]
- Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isfull
. --query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv,md
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Remarks¶
All recipients (internal and external) have to have access to the target SharePoint site.
Examples¶
Send an e-mail to user@contoso.com
m365 spo mail send --webUrl https://contoso.sharepoint.com/sites/project-x --to "user@contoso.com" --subject "Email sent via CLI for Microsoft 365" --body "<h1>CLI for Microsoft 365</h1>Email sent via <b>command</b>."
Send an e-mail to multiples addresses
m365 spo mail send --webUrl https://contoso.sharepoint.com/sites/project-x --to "user1@contoso.com,user2@contoso.com" --subject "Email sent via CLI for Microsoft 365" --body "<h1>CLI for Microsoft 365</h1>Email sent via <b>command</b>." --cc "user3@contoso.com" --bcc "user4@contoso.com"
Send an e-mail to user@contoso.com with additional headers
m365 spo mail send --webUrl https://contoso.sharepoint.com/sites/project-x --to "user@contoso.com" --subject "Email sent via CLI for Microsoft 365" --body "<h1>CLI for Microsoft 365</h1>Email sent via <b>command</b>." --additionalHeaders "'{\"X-MC-Tags\":\"CLI for Microsoft 365\"}'"
Response¶
The command won't return a response on success.