Page 1 of 1

email attachment

Posted: Tue Apr 22, 2008 11:08 am
by sri75
HI,

I have to send one sequential file as an email attachement.
I can send the attachment , but the problem is everything in one line

my original file on unix like this

Code: Select all

JobName     TableName

"job1",   "table1"

"job2",   "table2"

"job3",   "table3"
but when I open an email attachment it looks like thi

JobName TableName "job1", "table1" "job2", "table2"

do i need to do any formatting before i send the attachment

Can you please help me

Thanks

Posted: Tue Apr 22, 2008 1:02 pm
by DSguru2B
Yes. Make sure when you create the file, you create it "DOS style" as its intention is to be emailed to a windoze server.

Posted: Tue Apr 22, 2008 1:10 pm
by sri75
Thanks DSguru2B for your Suggestion
It worked perfect