new Thread(new Runnable() {
public void run() {
try {
sendEmail(null, to, subject, content);
} catch (Exception ex) {
}
}
}).start();
new Thread(new Runnable() {
public void run() {
try {
sendEmail(null, to, subject, content);
} catch (Exception ex) {
}
}
}).start();