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

  • SEARCH
  • Home
  • 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 7193385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:09:36+00:00 2026-05-28T20:09:36+00:00

I am using a Send-MailMessage function to email the log files of a backup.

  • 0

I am using a Send-MailMessage function to email the log files of a backup. I have edited the PowerShell profile so a transcript file is automatically created. If the backup encounters an error the SendMailErr function is called.

This works but I would like to add the transcript file and log file as an attachment (if they exist). If they don’t exist I would like to change the body of the email to say “Transcript does not exist etc.”

My clumsy code in it’s current state

# Mail Settings
$to = "first.lastname@unisa.edu.au"
$from = "$env:ComputerName@unisa.edu.au"
$Smtp = "mx-out.company.edu.au"
$body = "Please review attached log file $seperator See $blog for WBAdmin Log"
$attachments = "$logfile","$trans" | Where-Object {Test-Path $_ }

#Transcript File
$trans = Get-ChildItem $bLog ` 
  -filter "$env:computername-PSTranscript-$(get-date -format ddMMyyyy).log" 
  -Name

function SendMailErr { 
$MessageParameters = @{
    From = $from
    To = $to
    Subject = "ALERT: Backup Failed for $env:ComputerName.$env:USERDNSDOMAIN `
                     - $((Get-Date).ToShortDateString())"
    Body = $body      
    SmtpServer = $Smtp
    Priority = "High"
    Attachments = $attachments
}
Send-MailMessage @MessageParameters 
Exit
}

Any advice would be greatly appreciated.

Thank you.

Amelia

  • 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-28T20:09:37+00:00Added an answer on May 28, 2026 at 8:09 pm

    I usually approach that like this:
    Start with an empty array for $body. As you encounter conditions that you want to add text about to the body, add those strings using +=. Before you send it, run it through out-string to convert it to a string and add newlines.

    $body = @()
    
     if (test-path $logfile){$body += "Log file $logfile attached"}
         else {$body += "Log file $logfile was not found"}
    
     if (test-path $trans){$body += "Transcript file $trans attached"}
         else {$body += "Transcript file $trans was not found"}
    
     $body = $body | out-string
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to send an email message using the .NET MailMessage class which can
Can I send email using jQuery only? I don't have .Net or PHP etc
I am using System.Net.Mail.MailMessage to create and send an email message. For various reasons
I have a function that sends email using asp.net built in mail framework. I've
In my web app (ASP.NET MVC), I send an email using the following: MailMessage
I am using a mail function to send html to an email address, but
I have successfully sent simple email using this: SimpleMailMessage mailMessage = new SimpleMailMessage(); mailMessage.setTo("someone@abc.example");
I am trying to send an email using c# using the following code. MailMessage
I tried to send an email using the following code: MailMessage message = new
Currently, our application uses a javax.mail to send email, using javax.mail.MailMessage. We set the

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.