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

XMIT - Multiple To List, CC and Subject


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
HameedAli

Active User


Joined: 16 Apr 2009
Posts: 151
Location: India

PostPosted: Wed Feb 17, 2010 2:09 pm
Reply with quote

How do I assign a value to the subject field of the mail? Now, it comes as 'No subject'.
Is it possible to CC a person instead of To list.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Wed Feb 17, 2010 4:11 pm
Reply with quote

Google is your friend. Google RFC 2821 and read up on what you can do in an SMTP email (which is what the mainframe sends).
Back to top
View user's profile Send private message
HameedAli

Active User


Joined: 16 Apr 2009
Posts: 151
Location: India

PostPosted: Wed Feb 17, 2010 7:42 pm
Reply with quote

Hi!
I'm using the below code to XMIT the information to mail ID.
Code:
queue 'hi!'
queue '$$'
Address TSO 'XMIT QWERT.ASDFGHJK LINE($$)'

1) How do I assign a value to the subject field of the mail? Now, it comes as 'No subject'.
2) Is it possible to CC a person instead of To list.
3) When I XMIT the same info to two different ID's , I see only the first one.
being sent, Why is that?
Code:
queue 'hi!'
queue '$$'
Address TSO 'XMIT QWERT.ASDFGHJK LINE($$)'
Address TSO 'XMIT QWERT.XXVBNRT LINE($$)'
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Wed Feb 17, 2010 10:22 pm
Reply with quote

The rexx queue is a clipboard of sorts. You are putting stuff into it and the XMIT is pulling stuff out (destructively). The second XMIT will not be able to find it.

Check the help for XMIT to see how to specify two destinations on the same command.

For subject try (untested) :
Code:

queue 'subject: try this'
queue 'hi!'
queue '$$'
Address TSO 'XMIT QWERT.ASDFGHJK LINE($$)'
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts How to create a list of SAR jobs with... CA Products 3
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Grouping by multiple headers DFSORT/ICETOOL 7
Search our Forums:

Back to Top