Configure email notifications to send alerts to VMware Aria Automation users.

UI Procedure

  1. Log in to the VMware Aria Automation cloud services console at https://<aria_automation_cluster_fqdn>/csp/gateway/portal with a user assigned the Service Broker administrator service role.
  2. On the main navigation bar, click Services.

  3. Under My Services, click Service Broker.

  4. Click the Content and policies tab.

  5. In the left pane, select Notifications > Email server.

  6. 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

  7. After the successful connection test, click Create.

PowerShell Procedure

  1. Start PowerShell.

  2. 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 = "[email protected]"
    $sddcManagerPass = "VMw@re1!"
    
    $configUser = "configadmin"
    $configPass = "VMw@re1!"
    $smtpServer = "smtp.rainpole.io"
    $emailAddress = "[email protected]"
    $senderName = "Rainpole Cloud"
  3. Perform the configuration by running the command in the PowerShell console.

    Add-vRANotification -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vraUser $configUser -vraPass $configPass -smtpServer $smtpServer -emailAddress $emailAddress -sender $senderName -connection NONE