| List bccAdd,
boolean boolSaveToFile)
throws IOException
{
// test other properties
SmtpMessage emailMessage = this.validateSend(
mailServer,
strSubject,
fromAdd,
toAdd,
ccAdd,
bccAdd,
true);
// test message content
assertTrue(emailMessage.getBody().indexOf(strMessage) != -1);
}
|