Public/Email/Get-HTML.ps1
function Get-HTML($text) { $text = $text.Split("`r") foreach ($t in $text) { Write-Host $t } } |
function Get-HTML($text) { $text = $text.Split("`r") foreach ($t in $text) { Write-Host $t } } |