/VESPEmailSettings
Represents Veeam Explorer for Microsoft SharePoint (VESP) email settings.
Configure VESP email settings to send notifications and restored Microsoft SharePoint data via email.
Resource URL
https://<Backup-Office365>:4443/v3/VESPEmailSettings |
Related Resources
None.
Methods
The following methods are supported for the /VESPEmailSettings resource:
Properties
The /VESPEmailSettings resource has the following properties:
Property | Type | Description |
---|---|---|
EnableNotification | bool | If set to True, indicates that mail server settings will be used for sending restored Microsoft SharePoint items via email. For example, "enableNotification": "true". |
SmtpServer | string | Specifies the full DNS name or IP address of the SMTP server for sending restored Microsoft SharePoint items in email messages. For example, "smtpServer": "smtp.office365.com". |
Port | int | Specifies the port for connecting to SMTP server. For example, "port": "25". |
From | string | Specifies the email address from which the restored Microsoft SharePoint data will be sent. This email address must have the rights to connect to SMTP server, If SMTP server requires authentication. For example, "from": "support@tech.com". |
UseSSL | bool | If set to True, indicates that Veeam Backup for Microsoft Office 365 uses a secure connection for email notification transmission. Otherwise, email notifications will be transmitted through the connection that does not require SSL authentication. For example, "useSSL": "true". |
UseAuthentication | bool | If set to True, indicates that SMTP server requires authentication. Otherwise, the connection will be established to SMTP server, which does not enforce authentication. For example, "useAuthentication": "true". |
UserName | string | Specifies the user name you want to use for authenticating with SMTP server. For example, "username": " vscott@tech.onmicrosoft.com". |
UserPassword | string | Specifies the password you want to use for authenticating with SMTP server. For example, "userPassword": "P@ssW0rd". |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Resource Representation
The /VESPEmailSettings resource has the following representation:
{ "enableNotification": "true", "server": "smtp.office365.com", "port": 25, "useAuthentication": "true", "username": "vscott@tech.onmicrosoft.com", "userPassword": "P@ssW0rd", "useSSL": "true", "from": "support@tech.com", "_links": { "self": { "href": "https://support.east.local:4443/v3/vexemailsettings" } } } |