Sponsored Content
Top Forums Shell Programming and Scripting Sending email with multiple files.. Post 302468695 by DGPickett on Wednesday 3rd of November 2010 01:58:08 PM
Old 11-03-2010
Yes, and logically, if you get not 0 or 2, something is amiss, so you might want to structure error handling like this:
Code:
 
case $rc in
(0)
  Success processing . . . .
  ;;
(2)
  Warning Processing . . .
  exit $rc
  ;;
(*)
  Fatal Error Processing . . .
  exit $rc
  ;;
esac

This User Gave Thanks to DGPickett For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sending Multiple Files through email

Hi Everyone, I'm using the uuencode command with the mail command to send out emails through a UNIX script. The problems is that i have a number of gif files that i need to attach to a single email but the number and name of the gif files is not static. Example today the folder home/Desktop may... (4 Replies)
Discussion started by: nbvcxzdz
4 Replies

2. Shell Programming and Scripting

Sending mutiple files thru email to lotus notes

Hi All, I am currently using the following script to send the single file to one/more email addresses. I need to send mutilple files at same time, are there anyway I could modify the script or write new one to accomplish the same. Script *************** #!/bin/ksh # Author: Manish... (4 Replies)
Discussion started by: lapisguy
4 Replies

3. Shell Programming and Scripting

Sending an email with more than one files

Hi, I would like to send an email with more than one attachement. I am using uuencode. I want to achive by suing uuencode. Also please let me know other ways. -Thambi (7 Replies)
Discussion started by: thambi
7 Replies

4. HP-UX

Sending Unix files as attachments in an email

Hi, I am executing the following command in order to send a file as an attachment: mailx -s "Subject" emailID@xyz.com < Testfile.txt Instead of attaching the file Testfile.txt, it is writing the contents of the file in the email message body. Please advise on how I can send the file as an... (7 Replies)
Discussion started by: sangharsh
7 Replies

5. HP-UX

Sending email to multiple IDs

Hi, I am trying to send an email to multiple IDs from Unix script. I have given the EmailIds in a file and trying to use the file as input in the script. > cat Email EmailID = "abc@xyz.com cbz@xyz.com" In my script I have . /Email mailx -s "subj" $EmailID This fails with the... (3 Replies)
Discussion started by: sangharsh
3 Replies

6. UNIX for Dummies Questions & Answers

Zipping files and sending email

Hi, I need to zip 4 files and send an email attaching the zipped files... Pls help.. Win ---------- Post updated at 10:49 AM ---------- Previous update was at 10:36 AM ---------- Hi, I need to convert 4 text files into xls,zip these 4 files and send an email attaching the... (2 Replies)
Discussion started by: win4luv
2 Replies

7. Shell Programming and Scripting

sending multiple files along with mail message using uuencode

Hi, I have a requirement to send a mail with multiple files attached to it and along with the text message in the mail. I am trying sumthing like below but it only sends me the text message and no files attached to the mail. ---------------------------------------- ( uuencode file1... (1 Reply)
Discussion started by: sachinkl
1 Replies

8. Solaris

Sending Mails to the Multiple Email Address

Hi All, I am pretty new to the mail service in Sun Solaris 5.10. If anybody help me in writing a script for the multiple recipient with subject and the body would be a helpful. Kindly help... Thanks in advance. :) Warm Regards, Pramod (5 Replies)
Discussion started by: Pramod_009
5 Replies

9. Shell Programming and Scripting

Sending files to multiple emails

Hi All, I want to send each file to each email id as below. Instead of writing saparate 10 mail commands can we do it in a simple step. file1.csv to raghu.s@hps.com file2.csv to kiran.m@hps.com file3.csv to kenni.d@hps.com file4.csv to rani.d@hps.com file5.csv to sandya.s@hps.com... (2 Replies)
Discussion started by: ROCK_PLSQL
2 Replies

10. Shell Programming and Scripting

Sending multiple files using uuencode command

Hi All, I want to send multiple CSV file using below code. In Result folder, we have multiple CSV files. However, I want to catch only Summary CSV files. I was trying using *, % with different combination. However, not able to do so. From below code, I could send only one file... (1 Reply)
Discussion started by: Swapnil Mawle
1 Replies
Mail::Message::Body::Nested(3pm)			User Contributed Perl Documentation			  Mail::Message::Body::Nested(3pm)

NAME
Mail::Message::Body::Nested - body of a message which contains a message INHERITANCE
Mail::Message::Body::Nested is a Mail::Message::Body is a Mail::Reporter SYNOPSIS
See Mail::Message::Body if($body->isNested) { my $nest = $body->nested; $nest->delete; } DESCRIPTION
The body (content) of a message can be stored in various ways. In this manual-page you find the description of extra functionality you have when a message contains a nested message, like "message/rfc822". A nested message is different from a multipart message which contains only one element, because a nested message has a full set of message header fields defined by the RFC882, where a part of a multipart has only a few. But because we do not keep track whether all fields are presented, a "Mail::Message::Part" is used anyway. OVERLOADED
overload: ""() See "OVERLOADED" in Mail::Message::Body overload: '==' and '!='() See "OVERLOADED" in Mail::Message::Body overload: @{}() See "OVERLOADED" in Mail::Message::Body overload: bool() See "OVERLOADED" in Mail::Message::Body METHODS
Constructors $obj->clone() See "Constructors" in Mail::Message::Body Mail::Message::Body::Nested->new(OPTIONS) -Option --Defined in --Default based_on Mail::Message::Body undef charset Mail::Message::Body 'PERL' or <undef> checked Mail::Message::Body <false> content_id Mail::Message::Body undef data Mail::Message::Body undef description Mail::Message::Body undef disposition Mail::Message::Body undef eol Mail::Message::Body 'NATIVE' file Mail::Message::Body undef log Mail::Reporter 'WARNINGS' message Mail::Message::Body undef mime_type Mail::Message::Body 'message/rfc822' modified Mail::Message::Body <false> nested undef trace Mail::Reporter 'WARNINGS' transfer_encoding Mail::Message::Body 'none' based_on => BODY charset => CHARSET|'PERL' checked => BOOLEAN content_id => STRING data => ARRAY-OF-LINES | STRING description => STRING|FIELD disposition => STRING|FIELD eol => 'CR'|'LF'|'CRLF'|'NATIVE' file => FILENAME|FILEHANDLE|IOHANDLE log => LEVEL message => MESSAGE mime_type => STRING|FIELD|MIME modified => BOOLEAN nested => MESSAGE The message which is encapsulated within this body. trace => LEVEL transfer_encoding => STRING|FIELD example: my $msg = $folder->message(3); my $encaps= Mail::Message::Body::Nested->new(nested => $msg); # The body will be coerced into a message, which lacks a few # lines but we do not bother. my $intro = Mail::Message::Body->new(data => ...); my $body = Mail::Message::Body::Nested->new(nested => $intro); Constructing a body $obj->attach(MESSAGES, OPTIONS) See "Constructing a body" in Mail::Message::Body::Construct $obj->check() See "Constructing a body" in Mail::Message::Body::Encode $obj->concatenate(COMPONENTS) See "Constructing a body" in Mail::Message::Body::Construct $obj->decoded(OPTIONS) See "Constructing a body" in Mail::Message::Body $obj->encode(OPTIONS) See "Constructing a body" in Mail::Message::Body::Encode $obj->encoded() See "Constructing a body" in Mail::Message::Body::Encode $obj->eol(['CR'|'LF'|'CRLF'|'NATIVE']) See "Constructing a body" in Mail::Message::Body $obj->foreachLine((CODE)) It is NOT possible to call some code for each line of a nested because that would damage the header of the encapsulated message $obj->stripSignature(OPTIONS) See "Constructing a body" in Mail::Message::Body::Construct $obj->unify(BODY) See "Constructing a body" in Mail::Message::Body::Encode The body $obj->isDelayed() See "The body" in Mail::Message::Body $obj->isMultipart() See "The body" in Mail::Message::Body $obj->isNested() See "The body" in Mail::Message::Body $obj->message([MESSAGE]) See "The body" in Mail::Message::Body About the payload $obj->charset() See "About the payload" in Mail::Message::Body $obj->checked([BOOLEAN]) See "About the payload" in Mail::Message::Body $obj->contentId([STRING|FIELD]) See "About the payload" in Mail::Message::Body $obj->description([STRING|FIELD]) See "About the payload" in Mail::Message::Body $obj->disposition([STRING|FIELD]) See "About the payload" in Mail::Message::Body $obj->dispositionFilename([DIRECTORY]) See "About the payload" in Mail::Message::Body::Encode $obj->isBinary() See "About the payload" in Mail::Message::Body::Encode $obj->isText() See "About the payload" in Mail::Message::Body::Encode $obj->mimeType() See "About the payload" in Mail::Message::Body $obj->nrLines() See "About the payload" in Mail::Message::Body $obj->size() See "About the payload" in Mail::Message::Body $obj->transferEncoding([STRING|FIELD]) See "About the payload" in Mail::Message::Body $obj->type([STRING|FIELD]) See "About the payload" in Mail::Message::Body Access to the payload $obj->endsOnNewline() See "Access to the payload" in Mail::Message::Body $obj->file() See "Access to the payload" in Mail::Message::Body $obj->forNested(CODE) Execute the CODE for the nested message. This returns a new nested body object. Returns "undef" when the CODE returns "undef". $obj->lines() See "Access to the payload" in Mail::Message::Body $obj->nested() Returns the Mail::Message::Part message which is enclosed within this body. $obj->print([FILEHANDLE]) See "Access to the payload" in Mail::Message::Body $obj->printEscapedFrom(FILEHANDLE) See "Access to the payload" in Mail::Message::Body $obj->string() See "Access to the payload" in Mail::Message::Body $obj->stripTrailingNewline() See "Access to the payload" in Mail::Message::Body $obj->write(OPTIONS) See "Access to the payload" in Mail::Message::Body Internals $obj->addTransferEncHandler(NAME, CLASS|OBJECT) Mail::Message::Body::Nested->addTransferEncHandler(NAME, CLASS|OBJECT) See "Internals" in Mail::Message::Body::Encode $obj->contentInfoFrom(HEAD) See "Internals" in Mail::Message::Body $obj->contentInfoTo(HEAD) See "Internals" in Mail::Message::Body $obj->fileLocation([BEGIN,END]) See "Internals" in Mail::Message::Body $obj->getTransferEncHandler(TYPE) See "Internals" in Mail::Message::Body::Encode $obj->isModified() See "Internals" in Mail::Message::Body $obj->load() See "Internals" in Mail::Message::Body $obj->modified([BOOLEAN]) See "Internals" in Mail::Message::Body $obj->moveLocation([DISTANCE]) See "Internals" in Mail::Message::Body $obj->read(PARSER, HEAD, BODYTYPE [,CHARS [,LINES]]) See "Internals" in Mail::Message::Body Error handling $obj->AUTOLOAD() See "Error handling" in Mail::Message::Body $obj->addReport(OBJECT) See "Error handling" in Mail::Reporter $obj->defaultTrace([LEVEL]|[LOGLEVEL, TRACELEVEL]|[LEVEL, CALLBACK]) Mail::Message::Body::Nested->defaultTrace([LEVEL]|[LOGLEVEL, TRACELEVEL]|[LEVEL, CALLBACK]) See "Error handling" in Mail::Reporter $obj->errors() See "Error handling" in Mail::Reporter $obj->log([LEVEL [,STRINGS]]) Mail::Message::Body::Nested->log([LEVEL [,STRINGS]]) See "Error handling" in Mail::Reporter $obj->logPriority(LEVEL) Mail::Message::Body::Nested->logPriority(LEVEL) See "Error handling" in Mail::Reporter $obj->logSettings() See "Error handling" in Mail::Reporter $obj->notImplemented() See "Error handling" in Mail::Reporter $obj->report([LEVEL]) See "Error handling" in Mail::Reporter $obj->reportAll([LEVEL]) See "Error handling" in Mail::Reporter $obj->trace([LEVEL]) See "Error handling" in Mail::Reporter $obj->warnings() See "Error handling" in Mail::Reporter Cleanup $obj->DESTROY() See "Cleanup" in Mail::Reporter $obj->inGlobalDestruction() See "Cleanup" in Mail::Reporter DIAGNOSTICS
Warning: Charset $name is not known The encoding or decoding of a message body encounters a character set which is not understood by Perl's Encode module. Warning: No decoder defined for transfer encoding $name. The data (message body) is encoded in a way which is not currently understood, therefore no decoding (or recoding) can take place. Warning: No encoder defined for transfer encoding $name. The data (message body) has been decoded, but the required encoding is unknown. The decoded data is returned. Error: Package $package does not implement $method. Fatal error: the specific package (or one of its superclasses) does not implement this method where it should. This message means that some other related classes do implement this method however the class at hand does not. Probably you should investigate this and probably inform the author of the package. Warning: Unknown line terminator $eol ignored Error: You cannot use foreachLine on a nested foreachLine() should be used on decoded message bodies only, because it would modify the header of the encapsulated message. which is clearly not acceptible. SEE ALSO
This module is part of Mail-Box distribution version 2.105, built on May 07, 2012. Website: http://perl.overmeer.net/mailbox/ LICENSE
Copyrights 2001-2012 by [Mark Overmeer]. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.14.2 2012-05-07 Mail::Message::Body::Nested(3pm)
All times are GMT -4. The time now is 12:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy