This is an archive version of the document. To get the most up-to-date information, see the current version.

Send-VETItem

Short Description

Sends Microsoft Teams items as attachments to emails.

Applies to

Veeam Backup for Microsoft 365

Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Send a Microsoft Teams channel post.

Send-VETItem -To <string> [-Post] <VETPost[]> [-From <string>] [-Subject <string>] [-Body <string>]  [<CommonParameters>]

  • Send a file published in a Microsoft Teams team channel.

Send-VETItem -To <string> [-File] <VETFile[]> [-From <string>] [-Subject <string>] [-Body <string>]  [<CommonParameters>]

Detailed Description

This cmdlet sends Microsoft Teams items as attachments in an email message.

Send-VETItem Note:

Before sending Microsoft Teams items, you must perform the following actions:

  • Specify SMTP settings for Veeam Explorer for Microsoft Teams. For more information on how to specify SMTP settings, see Set-VETSmtpSettings.
  • Start a restore session. For more information on how to start a restore session, see Start-VBOTeamsItemRestoreSession.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Post

Specifies Microsoft Teams team channel posts. The cmdlet will send posts in the email message.

Accepts the VETPost[] object. To get this object, run the Get-VETPost cmdlet.

True

0

True (ByValue)

False

File

Specifies Microsoft Teams team channel files. The cmdlet will send these files in the email message.

Accepts the VETFile[] object. To get this object, run the Get-VETFile cmdlet.

True

0

True (ByValue)

False

To

Specifies an email address to which Veeam Explorer for Microsoft Teams will send Microsoft Team items.

String

True

Named

False

False

From

Specifies the email address from which Veeam Explorer for Microsoft Teams will send Microsoft Team items.

If this parameter is omitted, Veeam Explorer for Microsoft Teams will use the email address specified in SMTP settings.

String

False

Named

False

False

Subject

Specifies a subject of an email message.

String

False

Named

False

False

Body

Specifies a body of an email message.

String

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.

Output Object

None.

Examples

Send-VETItemExample 1. Sending Microsoft Teams Post

Send-VETItemExample 2. Sending Microsoft Teams File

Related Commands