Configure email notifications in vRealize Operations Manager, so that users and applications receive administrative alerts from vRealize Operations Manager about certain situations in the data center.
UI Procedure
- Log in to the vRealize Operations Manager operations interface at https://<vrealize_operations_manager_fqdn> with a user assigned the Administrator role.
In the left pane, navigate to
.On the Alerts page, click Outbound settings.
On the Outbound settings tab, click Add.
In the Add/Edit outbound instance dialog box, configure these settings and enter your values from the VMware Cloud Foundation Planning and Preparation Workbook.
Setting
Value
Plug-in type
Standard Email Plugin
Instance name
Enter the name
Use secure connection
Selected
Secure connection type
TLS
To verify the connection with the SMTP server, click Test and click OK.
Click Save.
PowerShell Procedure
Start Windows PowerShell.
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $smtpServer = "smtp.rainpole.io" $smtpPort = "25" $senderAddress = "vrops-alerts@rainpole.io" $authUser = "administrator@rainpole.io" $authPass = "VMw@re1!"
Perform the configuration by running the command in the PowerShell console.
Add-vROPSAlertPluginEmail -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -pluginName "Email-Alert-Plugin" -smtpServer $smtpServer -smtpPort $smtpPort -senderAddress $senderAddress -secureConnection true -protocol TLS -authentication true -authUser $authUser -authPass $authPass