es5.js 223 B

1234567891011121314151617
  1. function send_single_email(
  2. app,
  3. email_id,
  4. email_address,
  5. subject,
  6. html,
  7. reply_to
  8. ) {
  9. send_single_email_implementation( app,
  10. email_id,
  11. email_address,
  12. subject,
  13. html,
  14. reply_to);
  15. return "nothing";
  16. }