$parameters = @{
    From = '
[email protected]'
    To = '
[email protected]'
    Subject = 'Email Subject'
    Attachments =  @('C:\files\samplefile1.txt','C:\files\samplefile2.txt')
    BCC = '
[email protected]'
    Body = 'Email body'
    BodyAsHTML = $False
    CC = '
[email protected]'
    Credential = Get-Crede...