IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Sending Report Via Email


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
bigcoolbudy

New User


Joined: 12 Jun 2006
Posts: 12

PostPosted: Wed Sep 06, 2006 3:08 am
Reply with quote

Hi,

I have a requiremnet to send the report file of record length 150 bytes via email to Lotus Note. I tried it using SMTPNOTE, but i am not able to send a file of more then 140 byte record length via email. Is there any way by which i can send report of 150 bytes record length from Mainframe to Lotus notes.

Thanks for your help.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Sep 06, 2006 11:12 pm
Reply with quote

I doubt that it's due to either SMTP or MIME. I just ran the following test:
Code:

//*                                                             
//STEP0000 EXEC SAS,                                           
// OPTIONS='EMAILHOST=##.###.##.### EMAILSYS=MAPI EMAILPORT=25'
//SAS.SASLOG  DD   SYSOUT=*                                     
//SAS.SYSDUMP DD   SYSOUT=*                                     
//SAS.SASLIST DD   SYSOUT=*                                     
//SYSIN    DD   DATA                                           
  FILENAME OUTBOX EMAIL                                         
    TO=('myaddress@company.com')                                       
    FROM=('MVSJESx')                                           
    SUBJECT='Your Print Output'                                 
    ATTACH=("SUPERK.TEST"                                       
      EXTENSION="txt"                                           
      CONTENT_TYPE="TEXT/HTML");                               
  DATA _NULL_;                                                 
  FILE OUTBOX;                                                 
  PUT 'Please review the attached document.';                   
  RUN;                                                         
/*                                                             

for a 254-byte dataset to Outlook with no problems. Maybe it's the Lotus Notes that's causing the problem?
Back to top
View user's profile Send private message
bigcoolbudy

New User


Joined: 12 Jun 2006
Posts: 12

PostPosted: Fri Sep 08, 2006 2:55 am
Reply with quote

Thanks superk for the reply. I'll try and let you know.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Need help on formatting a report DFSORT/ICETOOL 14
No new posts Creating Report using SORT DFSORT/ICETOOL 7
No new posts Ca7 long running jobs report All Other Mainframe Topics 1
No new posts Report of batch jobs JCL & VSAM 1
No new posts REXX to send an email in Mainframe wi... CLIST & REXX 3
Search our Forums:

Back to Top