*/
public void send(String mailId, MailTransportHandler handler) throws MailException {
MailService service = getMailService();
if (service == null) {
throw new MailNotFoundException("Could not find mail \"" + mailId + "\": mail service is not set");
}
MailBuilder builder = service.getMailBuilder(mailId);
send(builder, handler);