vote up 2 vote down star

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.

flag

4 Answers

vote up 3 vote down

There is two main methods of doing this.

  1. The Do-It-Yourselfer will use QtmmSendMail API
  2. Otherwise there are several other free and purchased products that you could use. The ones I would recommend are:
    • MAILTOOL - Currently $399. Depending on what you are trying to do, I would recommend SplTool Suite if you want to email out spool files.
    • RPGMail - Free API making use of JavaMail
link|flag
vote up 1 vote down

You could code your own program with Java and the JavaMail API.

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.