--- title: "Get-VBRMailNotificationConfiguration" description: "Returns global email notification settings. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns global email notification settings." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrmailnotificationconfiguration.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying Email Notification Settings > Get-VBRMailNotificationConfiguration" dateModified: "2026-08-19" --- # Get-VBRMailNotificationConfiguration ## Short Description Returns global email notification settings. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRMailNotificationConfiguration [] ``` ## Detailed Description This cmdlet returns global email notification settings. ## Parameters `` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRMailNotificationConfiguration` object that contains global email notification settings. ## Examples ::: example ### Getting Global Email Notification Settings This command returns global email notification settings. The cmdlet output will contain details on notification settings. ``` Get-VBRMailNotificationConfiguration Enabled : False SmtpServer : Sender : Recipient : Subject : [%JobResult%] %JobName% (%ObjectCount% objects) %Issues% DailyReportsTime : 3/8/2021 10:00:00 PM Port : 25 Timeout : 100000 SSLEnabled : False AuthEnabled : False Credentials : NotifyOnSuccess : True NotifyOnWarning : True NotifyOnFailure : True NotifyOnLastRetryOnly : True ``` :::