vote up 3 vote down star

We have a script to backup files. After the backup operation is over, we would like to send a report as an email notification to some of our email addresses.

How could this be done?

flag

0% accept rate
plzsendztehcodz? – Mitch Wheat Apr 2 at 13:12
I'm confused. He's asking how to send email from a batch file. How is that not a programming question? – rossfabricant Apr 2 at 13:16
damned it' batch and not bash, forget my comment – chburd Apr 2 at 13:20
How is that offensive? Explain! – divo Apr 2 at 13:37
Why not use the task scheduler? Afaik it can do such a thing. – Johannes Rössel Apr 2 at 13:50
show 2 more comments

5 Answers

vote up 1 vote down

You can also use a Power Shell script:

$smtp = new-object Net.Mail.SmtpClient("mail.example.com")

if( $Env:SmtpUseCredentials -eq "true" ) {
    $credentials = new-object Net.NetworkCredential("username","password")
    $smtp.Credentials = $credentials
}
$objMailMessage = New-Object System.Net.Mail.MailMessage
$objMailMessage.From = "script@mycompany.com"
$objMailMessage.To.Add("you@yourcompany.com")
$objMailMessage.Subject = "eMail subject Notification"
$objMailMessage.Body = "Hello world!"

$smtp.send($objMailMessage)
link|flag
vote up 1 vote down

We use blat to do this all the time in our environment. I use it as well to connect to Gmail with Stunnel. Here's the params to send a file

blat -to user@example.com -server smtp.example.com -f batch_script@example.com -subject "subject" -body "body" -attach c:\temp\file.txt

Or you can put that file in as the body

blat c:\temp\file.txt -to user@example.com -server smtp.example.com -f batch_script@example.com -subject "subject"
link|flag
vote up 2 vote down

Easiest way is to use a third-party application as mentioned by others

If that is not an option I wrote a simple sendmail utility using vbscript & CDO which I called from a batch script

See the examples here http://www.paulsadowski.com/WSH/cdo.htm

link|flag
vote up 6 vote down

Blat:

blat -to user@example.com -server smtp.example.com -f batch_script@example.com -subject "subject" -body "body"
link|flag
vote up 3 vote down

bmail. Just install the EXE and run a line like this:

bmail -s myMailServer -f Sender@foo.com -t receiver@foo.com -a "Production Release Performed"
link|flag
Here I cant install bamil as per security purpose. plz tell me is there any alernate way to solve my problem. – unknown (google) Apr 2 at 13:40
Have you tried with other command-line email clients? A Google search lists quite many freely available tools. – divo Apr 2 at 13:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.