Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 20 → Rev 21

/xservices/trunk/src/java/net/brutex/xservices/ws/MiscServiceImpl.java
56,6 → 56,29
false);
}
 
public ReturnCode sendMailSimpleWithAttachment(HostConnection mailhost, String from,
String tolist, String subject, String message,
FileSetResource res) {
return sendMail(from,
from,
tolist,
"",
"",
subject,
message,
"text/plain",
res,
mailhost.hostname,
mailhost.port,
mailhost.user,
mailhost.password,
"utf-8",
false,
false);
}
 
 
 
public ReturnCode sleep(int minutes, int seconds) {
return sleep(0, minutes, seconds, 0);
}