document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def sendMail(user, pw, from, recipients, subject, body) {
  2.     new AntBuilder().mail(
  3.         mailhost: \'smtp.gmail.com\',
  4.         mailport: \'465\',
  5.         ssl: \'on\',
  6.         user: user,
  7.         password: pw,
  8.         from: from,
  9.         toList: recipients,
  10.         subject: subject,
  11.         message: body
  12.     )
  13. }
  14.  
  15. sendMail(\'GMAIL_USERNAME\', \'GMAIL_PASSWORD\', \'from@domain.com\', \'sendto@domain.com\', \'Subject可以用中文\', \'Content可以用中文, too\')
');