当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
MailMessage (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.mail
Interface MailMessage
- All Known Implementing Classes:
- MimeMailMessage, SimpleMailMessage
public interface MailMessage
This is a common interface for mail messages, allowing a user to set key
values required in assembling a mail message, without needing to know if
the underlying message is a simple text message or a more sophisticated
MIME message.
Implemented by both SimpleMailMessage and MimeMessageHelper,
to let message population code interact with a simple message or a
MIME message through a common interface.
- Since:
- 1.1.5
- Author:
- Juergen Hoeller
- See Also:
SimpleMailMessage
,
MimeMessageHelper
setFrom
void setFrom(String from)
throws MailParseException
- Throws:
MailParseException
setReplyTo
void setReplyTo(String replyTo)
throws MailParseException
- Throws:
MailParseException
setTo
void setTo(String to)
throws MailParseException
- Throws:
MailParseException
setTo
void setTo(String[] to)
throws MailParseException
- Throws:
MailParseException
setCc
void setCc(String cc)
throws MailParseException
- Throws:
MailParseException
setCc
void setCc(String[] cc)
throws MailParseException
- Throws:
MailParseException
setBcc
void setBcc(String bcc)
throws MailParseException
- Throws:
MailParseException
setBcc
void setBcc(String[] bcc)
throws MailParseException
- Throws:
MailParseException
setSentDate
void setSentDate(Date sentDate)
throws MailParseException
- Throws:
MailParseException
setSubject
void setSubject(String subject)
throws MailParseException
- Throws:
MailParseException
setText
void setText(String text)
throws MailParseException
- Throws:
MailParseException
Copyright © 2002-2007 The Spring Framework.