Configure email notifications to send alerts to vRealize Automation users.
UI Procedure
- Log in to the vRealize Automation cloud services console at https://<vra_cluster_fqdn>/csp/gateway/portal with a user assigned the Service Broker administrator service role.
On the main navigation bar, click Services.
Under My Services, click Service Broker.
Click the Content and policies tab.
In the left pane, select
.Enter your values from the VMware Cloud Foundation Planning and Preparation Workbook, configure the following settings, and click Test connection.
Setting
Value
Authentication
Depends on organization requirements.
Connection Security
SSL/TLS
Trust Certificates Presented by the Host
Yes
After the successful connection test, click Create.
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!" $vraUser = "configadmin" $vrаPass = "VMw@re1!" $smtpServer = "smtp.rainpole.io" $emailAddress = "vra-no-reply@rainpole.io" $senderName = "Rainpole Cloud"
Perform the configuration by running the command in the PowerShell console.
Add-vRANotification -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vraUser $vraUser -vraPass $vrаPass -smtpServer $smtpServer -emailAddress $emailAddress -sender $senderName -connection NONE