07-10-2011
HP_UX does not natively support Excel. Some application is programatically writing files in Excel format and mailing them as attachments. That is perfectly do-able. For example, there are Perl modules that will convert data to Excel format and mail files as attachments.
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
hi all,
I dont know of this is a duplicate thread, but the thread i started a while ago wasnot posted still. ok my question is i have a shell script named "mail_editck.sh". i have to include some reports in it so that i can get the email when they are done. the syntax goes like this.
... (2 Replies)
Discussion started by: tejasingaraju17
2 Replies
2. UNIX for Dummies Questions & Answers
I have a unix script that compresses a .txt file using gzip command and then sends it by mail using uuencode.
This has been working fine for some time, but lately I've been experiencing some problems, as when I open the mail generated, I don't see the attachment, but instead I get a large amount... (8 Replies)
Discussion started by: mvalonso
8 Replies
3. Shell Programming and Scripting
I a script i telnet port 25 and part of the attachment is
echo "Content-type: application/msword; filename= "$3" "
echo Content-transfer-encoding: base64
echo "Content-disposition: attachment; filename= "$3" "
echo
uuencode -m "$3" /dev/stdout
$3 is a word document. When i send... (0 Replies)
Discussion started by: markms
0 Replies
4. Solaris
We are running solaris 9.
I can send emails using mailx with no problems.
I can send attachments using uuencode no problems.
What I can't do is change the name to .txt or .doc or anything else using uuencode. The command I am using is:
uuencode /tmp/AsetReports /tmp/AsetReports.doc | mailx -s... (2 Replies)
Discussion started by: zeekstern
2 Replies
5. UNIX Desktop Questions & Answers
Hi All,
I am using unix's sendmail utility to send mails with attacments. I am using the uuencode command for attachments (zip).
When i send the mails to some account which is configured in the MS outook it opens/unzip the attachments with no problem.
But the same attachments seems to be... (3 Replies)
Discussion started by: manojram
3 Replies
6. Shell Programming and Scripting
Hi All,
I have a queryin the uuencode option. Actually i need to attach two files in a single mail.
I am aware of attaching a single file using the command below.
(echo " The first file ";uuencode file1 file1) | mailx -s " The files " venkidhadha@in.com
However i am not sure what... (6 Replies)
Discussion started by: venkidhadha
6 Replies
7. Shell Programming and Scripting
i used below code to attach a file but it's not attaching the file but sendinf a simple mail
uuencode ${discord_file} mail_list.txt | mailx -s "TEST MAIL" xxx@yahoo.com (3 Replies)
Discussion started by: punitpa
3 Replies
8. Shell Programming and Scripting
Hi everyone,
I'm emailing a spool file to a person using mailx. I'm using uuencode to attach the file to the email. but am getting this error
uuencode: ISO8859-15 to 646 conversion: Invalid argument
Any ideas as to why. The code is below
sqlplus -s user/password@database <<EOF
set... (9 Replies)
Discussion started by: rjsha1
9 Replies
9. Shell Programming and Scripting
I've this command to run ...
Purpose : Send attachment file with e-mail body...
( E-mail body i read it from text file)
uuencode TEST_FILE.csv TEST_FILE.csv | cat /usr/local/bin/EMAIL_BODY.txt - | mailx -s "TEST Report" -c receiver1@mail.com receiver2@mail.com
Here is the... (2 Replies)
Discussion started by: prash184u
2 Replies
10. Shell Programming and Scripting
Hi,
I am trying to send an attachment through UNIX to the mail box. But along with the attachments I am also receiving junk data as a text file, Suppose "Hi" is the subject of the mailx command then along with the attachment I am getting Hi.txt also.
Below are the commands which I used : -
... (15 Replies)
Discussion started by: Alex_Smith
15 Replies
LEARN ABOUT DEBIAN
excel::template::container::conditional
Excel::Template::Container::Conditional(3pm) User Contributed Perl Documentation Excel::Template::Container::Conditional(3pm)
NAME
Excel::Template::Container::Conditional - Excel::Template::Container::Conditional
PURPOSE
To provide conditional execution of children nodes
NODE NAME
IF
INHERITANCE
CONTAINER
ATTRIBUTES
o NAME
This is the name of the parameter to test. It is resolved like any other parameter name. (q.v. VAR for more info.)
o VALUE
If VALUE is set, then a comparison operation is done. The value of NAME is compared to VALUE using the value of OP.
o OP
If VALUE is set, then this is checked. If it isn't present, then '==' (numeric equality) is assumed. OP must be one of Perl the numeric
comparison operators or the string comparison operators. All 6 of each kind is supported.
Note: If you want to use < or <=, you must instead use < or <=. This is to make sure it will parse with XML::Parser. You should
not need to use > or >= instead of > and >=, respectively.
o IS
If VALUE is not set, then IS is checked. IS is allowed to be either "TRUE" or "FALSE". The boolean value of NAME is checked against IS.
CHILDREN
None
EFFECTS
None
DEPENDENCIES
None
USAGE
<if name="__ODD__" is="false">
... Children here
</if>
In the above example, the children will be executed if the value of __ODD__ (which is set by the LOOP node) is false. So, for all even
iterations.
AUTHOR
Rob Kinyon (rob.kinyon@gmail.com)
SEE ALSO
LOOP, VAR
perl v5.14.2 2010-06-17 Excel::Template::Container::Conditional(3pm)