 |
 |
| Domino Tips: |
|
 |
 |

JAVA
Java mail class with multiple constructors
Stowe Spivey 03.19.2002
Rating: -3.00- (out of 5)




|
Use this class to send email with recipeient vector, subject, message and even a doclink if needed. For example, if I wanted to use this class to send a message and doclink to Joe Jones, I would use this code to call it:
SendMailMemo sn = new SendMailMemo();
Vector v = new Vector();
v.addElement("Joe Jones");
String subj = "Subject goes here";
String message = "This is the message.";
sn.sendIt(v, subj, message, db, cdoc);
Here's the code for SendMailMemo.java
Code
import lotus.domino.*;
import java.util.Vector;
public class SendMailMemo{
public void sendIt(Vector v, String subj, String message, Database db) {
try {
Document memo = db.createDocument();
memo.appendItemValue("Form", "Memo");
memo.appendItemValue("Subject", subj);
RichTextItem body = memo.createRichTextItem("Body");
body.appendText(message);
memo.send(v);
}
catch(Exception e) {
e.printStackTrace();
}
}
public void sendIt(Vector v, String subj, String message, Database db, Document doc) {
try {
Document memo = db.createDocument();
memo.appendItemValue("Form", "Memo");
memo.appendItemValue("Subject", subj);
RichTextItem body = memo.createRichTextItem("Body");
body.appendText(message);
body.appendDocLink(doc);
memo.send(v);
}
catch(Exception e) {
e.printStackTrace();
}
}
}
 |

|
Rate this Tip
|
To rate tips, you must be a member of SearchDomino.com. Register now
to start rating these tips. Log in if you are already a member.
|


');
// -->
DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
|
 |
|
|
 |
|
 |
 |
 |
 |
| TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of . |
|
| |
All Rights Reserved, , TechTarget |
|
|
|
|
|