TechTip: Using the QTMMSENDMAIL API PDF Print E-mail
Written by Jeff Olen   
Sunday, 13 July 2003

Send multiple email attachments to multiple recipients.

I think that most of us know that you can use the SNDDST command to send an email with a single attachment. But what do you do if you need to send multiple attachments? Or send to multiple persons? Well, you have a few options. First, you can take the easy way out and just send multiple emails with a single attachment (no shame in that...I did it for years). Or you can take the bull by the horns and use the QTMMSENDMAIL API to send multiple attachments to multiple people in a single email. Although getting started using QTMMSENDMAIL will require some work up front, the returns are well worth the effort. But there are several items to be addressed (no pun intended) before using the API.

First, you need to create a MIME-formatted email file and place it in the IFS. In my opinion, this is the most difficult part of using the QTMMSENDMAIL API. IBM apparently figures that if you are using the API, then you must be able to recite RFC822 from memory, because IBM has no documentation regarding building a MIME email file. For those of you who are unfamiliar with RFC822, it is the document that defines the "standard for the format of ARPA Internet text messages." Feel free to wade through it at your leisure. It is not an easy read, but it does have some good information. Personally, I would not bother with it unless you are planning to build your own version of Outlook or Eudora. I found an excellent "how-to" article that was much more helpful. In addition, I have included a sample of a valid MIME-formatted email below. If you are only going to be sending text messages and text files (flat text or comma delimited), you can just use the sample I have included as a guide. If you are planning to email programs or *SAVF types of files, you will probably need to get detailed information from the sources mentioned above.

Once you understand how to create your MIME email file, you can move on to the next hurdle. To send email using QTMMSENDMAIL, you need to call it with the correct parameters. However, in this instance, that is not as simple as it sounds. To start with, the IBM documentation is not clear on how to format the parameters. To make matters worse, those of us who are predominantly RPG programmers are used to working with fixed field lengths and tend to be thrown off by variable field lengths and pointers.

If you are familiar with C and/or C++ and the use of structures, you can probably skip the next few paragraphs. For the rest of you, I will walk you through the process so you get a thorough understanding of how to build the structure(s) needed for the QTMMSENDMAIL API.

The QTMMSENDMAIL API has seven required parameters:

  1. File Name is the IFS path and file name of the MIME email file. Maximum file name length is 255.
  2. File Name Length is the length of the file name. Max is 255.
  3. Originator Address is the email address of the sender. Maximum originator address length is 256.
  4. Length of Originator is the length of the originator address. Max is 256.
  5. Recipient Structure is the data structure (ADDTO100) of all recipients. Maximum length for any single recipient address is 256.
  6. Total Number of Recipients should be obvious. It's the total number of persons the email is being sent to, including carbon copies (CC) and blind carbon copies (BCC).
  7. Error Code is the standard API error structure. See the IBM documentation for details.


The tricky part is that the file name, originator address, recipient structure, and error code are passed as pointers, and the recipient structure occurs once for each recipient. Passing pointers is simply a matter of using the %ADDR BIF to get the address of each of the fields. The multiple occurrences of the recipient structure (ADDTO100) need to be placed end to end into a large field or data structure. In the sample program, I use a function to prepare each occurrence and then append it to the large RecipTbl field. This process of appending each occurrence could be further shortcut by using a pointer and moving the data directly into the RecipTbl field (alas, I have a deadline, so I'm not going back to change it now).

Gotchas

There are a few things to watch for when using QTMMSENDMAIL. Foremost among these is that if your MIME email file is incorrect in some way, the API will complete successfully (i.e., QUSEC shows no error), but the email(s) never show up at the destination. This was an irritating problem when I was learning to create the MIME emails correctly. As a side note, the originator and recipients listed in the MIME file do not necessarily have to match the ones you send as parms to the QTMMSENDMAIL API. However, this causes some unexpected results (as I found out) and is not recommended.

Also, the conversion between EBCDIC and ASCII can be a problem. If everything you are sending is binary data (e.g., programs, *SAVF files, etc.), you will not have this problem. However, if you are sending data from a file as an attachment, you will need to convert the data to ASCII.

Lastly, I have not included any error checking on the API call in the sample program. You may want to add some (just in case).

Jeff Olen is a member of the AS/400 development team at Gauss Interprise, a content management software company located in Irvine, California. He can be reached by email at This e-mail address is being protected from spam bots, you need JavaScript enabled to view it .



Last Updated ( Sunday, 13 July 2003 )
 
Discuss (13 posts)
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 17:47:00
I tried the code you provided. It still comes across as an attachment. I did not want the user to have to open any attachment but able to view within the preview pane. If you come up anything else i would appreciate it. In the meantime, i'll research this QTMMSENDMAIL api you're talking about. thanks
#114000
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 13:09:00
The way its done is not pretty but it appears to work... <p>Here's the SNDDST command I used. Its the "--PART.BOUNDARY.1:/NContent-Type: text/html:/N" that makes the difference. Everything beyond that point will be interpreted as HTML. <p>Its kind of a kluge but it works. <p>Jeff <p><!--mccodelink_begin--> <BR>
<!-- do not remove --> <BR>
<hr width=50 align=left><small><a href='http://www.mcpressonline.com/mc/showcode@@.6ae71ef5/10' target='_blank'>Code</a></small> <BR>
<!--mccodelink_end-->
#113999
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 12:43:00
Joe is right. You can't do this because the SNDDST command inserts the "content-type=text/plain" header in the email. This will cause anything you place in the *LMSG parameter to be interpreted as plain text not as HTML. <p>sorry. <p>Jeff
#113998
J.Wells
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 12:40:00
It is my understanding that there is no way to use SNDDST to send an email with embedded html. That is the appeal of using the QTMMSENDMAIL API. <p>Joe
#113997
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 12:20:00
i'm trying to do the same. Create an email with html tags embedded in the body of the email itself. Not as an attachment but within the body of the email. I need to do this by ising the snddst command. thanks <BR> hutchinsm@classic-cable.com
#113996
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 12:18:00
i'm trying to do the same. Create an email with html tags embedded in the body of the email itself. Not as an attachment but within the body of the email. I need to do this by ising the snddst command. thanks <BR> hutchinsm@classic-cable.com
#113995
J.Wells
TechTip: Using the QTMMSENDMAIL API
Jul 24 2003 17:42:00
I figured it out - it was an authority issue! Public had no authority.
#113994
J.Wells
TechTip: Using the QTMMSENDMAIL API
Jul 24 2003 16:14:00
Out of curiosity, I modified the program that creates the file to write the file directly to the IFS. Unfortunately, the results are the same! <p>Joe
#113993
J.Wells
TechTip: Using the QTMMSENDMAIL API
Jul 24 2003 15:22:00
Jeff, <p>Thanks for the article! I have been wanting to experiment with this API for quite some time and your article was the perfect excuse. <p>I have written a simple program that creates a mime message with embedded html. This file is created in a PF and I then use CPYTOSTMF to place it in the IFS. When I then attempt to send this email, nothing happens. The strange part is that I can open the mime message in a text browser (UltrEdit), save it, and then the email will go! I have debugged the program and QUSEI is blank after the call to SENDMAIL. <p>What coulf I be doing wrong? <p>Thanks, <p>Joe
#113992
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Jul 16 2003 13:28:00
And then again, many of us use e-mail clients capable of rendering HTML but we explicitly disable the feature. A great way to differentiate spam from acceptable e-mail is that spammers usually send e-mails with HTML content. <p>HTML content is also a great way to propogate viruses. If you absolutely have to have HTML rendering enabled in your e-mail client, at the very least disable JavaScript. <p>Cheers! Hans
#113991
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Jul 16 2003 12:34:00
There is a way to include html in the email body. Simply change the "Content-Type:" from "text/plain" to "text/html". You also may need to change the "Content-Transfer-Encoding:" to "7bit". Remember that not some people still use the old ASCII-text email agents and will not be able to display the HTML correctly. The most common way to handle this is to include comments in your HTML that explain "If you are reading this..." then your email client cannot display HTML. <p>Jeff
#113990
Guest.Visitor
TechTip: Using the QTMMSENDMAIL API
Jul 14 2003 10:30:00
I enjoyed your article and It did come at a perfect time for me. One more thing, is there a way to include html in the body of the email.
#113989
MC Press Web Site Staff
TechTip: Using the QTMMSENDMAIL API
Sep 24 2003 17:47:00
This is a discussion about <B>TechTip: Using the QTMMSENDMAIL API</b>.<p align='center'><a href=http://www.mcpressonline.com/mc?1@232.1KNKfHX1eQT.17@.6ae6fa93>Click here for the article</a>.</p>
#113988


Discuss...
User Rating: / 0
PoorBest 
Related Articles
< Prev   Next >

   MC-STORE.COM