Forum Discussion

chendley's avatar
chendley
Copper Contributor
Sep 10, 2019

Send-MailMessage with Powershell and Exchange Online with MFA

I am having difficulty with one of my scripts that blocks a user from signing into Office 365 then sends an email to my manager and HR when the script has completed.

 

I downloaded the Exchange Online Powershell Module and connected to EXOPSSession but I receive an error message that I need a secure connection to send a message. I know I created a secure connection with the old way to connect with Exchange Online but not sure how to do it when I connect to EXOPSession.

 

Can someone please point me in the right direction?

  • Kevin_Morgan's avatar
    Kevin_Morgan
    Iron Contributor

    chendley 

     

    The Send-MailMessage cmdlet is not related with Exchange Online Powershell or EXOPSSession (MFA), this is normal Powershell utility command, so you have to individually pass required parameters (ex: username and password) to this cmdlet.

     

    The below command works fine for me even with MFA enabled account.

    $username = "user@domain.com"
    $password = "user_password"
    $sstr = ConvertTo-SecureString -string $password -AsPlainText -Force
    $cred = New-Object System.Management.Automation.PSCredential -argumentlist $username, $sstr
    $body = "This is a test email"
    Send-MailMessage -To "admin@domain.com" -from "user@domain.com" -Subject 'Test message' -Body $body -BodyAsHtml -smtpserver smtp.office365.com -usessl -Credential $cred -Port 587

    If you face issue with MFA enabled account, then you can generate app password and then use an app password for that account, instead of the regular user password.

     

    Refer this post for more details : https://techcommunity.microsoft.com/t5/Identity-Authentication/Send-Mail-SMTP-through-Office-365-with-MFA/m-p/163867

Resources