Home > Domino Tips > Developer > Java > Java mail class with multiple constructors
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

JAVA

Java mail class with multiple constructors


Stowe Spivey
03.19.2002
Rating: -3.00- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


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.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Java
Java code inserts data from Notes documents into a SQL table
Java code shortens strings in a SQL table
How to execute a stored procedure in Lotus Notes Domino using Java
How to return an HTML representation of a Lotus Notes rich-text field
Shrink Lotus Notes databases with many attachments
Converting Lotus Notes Domino Web pages to PDF files with a Java agent
A bevy of Notes/Domino development tips
Converting Web pages to images using Java
Creating Microsoft Word documents from Lotus Notes
FAQ: Java for Lotus Notes and Domino

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

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.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
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 technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts