function Get-DateRFC1123() {
    [string]$date_string = ([System.DateTime]::UtcNow | Get-Date -Format R).ToString()
    return $date_string
}

Running the command Get-DateRFC1123 returns the value

Sun, 06 Jan 2019 20:27:41 GMT