Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7649229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:54:41+00:00 2026-05-31T10:54:41+00:00

I have a script that sends an email if a task fails (SendMailErr). I

  • 0

I have a script that sends an email if a task fails (SendMailErr). I would like to add in retrying to send the email if the previous send-mailmessage failed. I had tried to put it into a try catch finally loop within the function but it didn’t work as expected. Here is my code

$waitMail = 60
$sendErr = "Error Sending Email to SI Team: $_. Retrying in $waitMail minute(s)"

function SendMailErr { 
$MessageParameters = @{
    From = $from
    To = $to
    Subject = "ALERT: Backup Failed for $env:ComputerName.$env:USERDNSDOMAIN - $((Get-Date).ToShortDateString())"
    Body = $body | Out-String 
    SmtpServer = $Smtp
    Priority = "High"
    Attachments = $attachments
}
try {   Send-MailMessage @MessageParameters -EA Stop
        Exit
    }
catch { Write-Log $sendErr
        Sleep $waitMail
        Send-MailMessage @MessageParameters
        Exit
      }
finaly {  
        Write-Log "Error: Unable to send email to SI Team"
        Exit
}

Any suggestions would be greatly appreciated. I’m sure there’s a better way to structure it, my googling just hasn’t found it yet.

Thanks,
Amelia


I’ve figured this out in my own clumsy way…

Thank you to the person that pointed out I had an Exit within the trap.

The following works for me now

function SendMailErr { 
$MessageParameters = @{
    From = $from
    To = $to
Subject = "ALERT: Backup Failed for $env:ComputerName.$env:USERDNSDOMAIN - $((Get-Date).ToShortDateString())"
SmtpServer = $smtp
    Body = $body
Priority = "High"

}
try {
    Send-MailMessage @MessageParameters  -EA Stop;

    }
catch { Write-Host $sendErr
    Sleep $waitMail
    Send-MailMessage @MessageParameters
      }

Exit
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T10:54:42+00:00Added an answer on May 31, 2026 at 10:54 am
    function SendMailErr { 
    $MessageParameters = @{
    From = $from
    To = $to
    Subject = "ALERT: Backup Failed for $env:ComputerName.$env:USERDNSDOMAIN - $((Get-        Date).ToShortDateString())"
    SmtpServer = $smtp
    Body = $body
    Priority = "High"
    
    }
    try {
    Send-MailMessage @MessageParameters  -EA Stop;
    
    }
    catch { Write-Host $sendErr
    Sleep $waitMail
    Send-MailMessage @MessageParameters
      }
    
    Exit
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a script that sends SMS alerts using email to SMS gateways like
I have a simple php script on my domain that sends me an email:
I have a php script that sends an email. It currently uses the php
I need to send newsletters. I have already a PHP script that sends mass
I have created a script that sends email automatically! My mail message is included
I have a script (employment application form) that sends an html email with file
I have a powershell script that sends out an HTML formatted email, the formatting
I have a simple PHP script that sends a message to a specified email
I have a pretty simple python script that sends emails, something like this: import
I have a PHP script that sends critical e-mails. I know how to check

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.