Is there a way to send an email from an iSeries terminal, adding an attachment from the IFS? I know how to send a normal email using the SNDDST utility.
|
feedback
|
|
There is two main methods of doing this.
| |||
|
feedback
|
|
You could code your own program with Java and the JavaMail API. | |||
feedback
|
|
I have not looked in a while but there should be some unixy mail utilities on i5/OS that QSH could use. If not, it's supposedly a simple matter to port one. Look here for ideas: http://www.shelldorado.com/articles/mailattachments.html But I like the JavaMail idea better. Just a quick google yields a site that has examples of JavaMail usage: http://www.javaworld.com/javaworld/jw-10-2001/jw-1026-javamail.html With JavaMail you can also read mail if that could also be useful. Update: You say you can already add attachments from the IFS. The command CATSPLF (part of QSH utilities) can retrieve spool files and write them to standard output. Which means you can transfer spool files to the IFS. But you have to know a lot about the job that created them. Like:
catsplf ... > /my/files/path
I found this at http://www.mcpressonline.com/tips-techniques/cl/techtip-read-printer-output-with-qshell.html.
CATSPLF was introduced in V5R3.
| ||||
|
feedback
|
|
Where I work we use MMAIL: http://www.easy400.net/mmail/start It's free and provides easy-to-use commands. For example, I happen to e-mail stream files all the time as follows (within a CLP):
MMAIL/EMLSTMF SUBJECT('Monthly Sales Reports') +
FROMNAME('AS/400') FROMADDR('as400@mycompany.com') +
TO('jsmith@mycompany.com'/Jim Smith/*TO +
'bjones@mycompany.com'/Bob Jones/*CC) +
STMF(&FILE1 &FILE2 &FILE3)
There are other parameters available as well (pretty self-explanatory if you use the interactive prompt), and several other commands to handle the most common use cases. The package does also provide an API if you want finer control, or need to send much more complex messages, but I have never needed more than the provided commands. | |||
|
feedback
|