Using the Secure iNet Factory components adding file attachments to your outbound email messages is a very simple task. The process for adding file attachments to your email message is described in the code example provided below. Example 01 /* 02 * @(#)SmtpAttachmentExample.java 03 * 04 * Copyright (c) 2001-2003 JSCAPE 05 * 1147 S. 53rd Pl., Mesa, Arizona, 85206, U.S.A. 06 * All rights reserved. 07 * 08 * This software is the confidential and proprietary information of 09 * JSCAPE. ("Confidential Information"). You shall not disclose such 10 * Confidential Information and shall use it only in accordance with 11 * the terms of the license agreement you entered into with JSCAPE. 12 */ 13 14 import com.jscape.inet.smtp.*; 15 import com.jscape.inet.mime.*; 16 import com.jscape.inet.email.*; 17 import java.io.*; 18 19 public class SmtpAttachmentExample extends SmtpAdapter { 20 public void sendMessage ( String hostname, String to, String from, String subject, Str...