I had included your smtpjs.js script in project and calling mail function on button click but i was unable to receive any mails
Here what i had done
function sendemail(){
alert('Mail alert');
Email.send("abc@gmail.com",
"bcd@yahoo.com",
"This is the auto mail from the Java Script file...Hahaha..:D",
"This is the testing of auto mails which will be send to the user who clicks forgot password",
"smtp.gmail.com",
"abc@gmail.com",
"gmail123");
alert('End Mail');
}
I had included your smtpjs.js script in project and calling mail function on button click but i was unable to receive any mails Here what i had done
function sendemail(){ alert('Mail alert'); Email.send("abc@gmail.com", "bcd@yahoo.com", "This is the auto mail from the Java Script file...Hahaha..:D", "This is the testing of auto mails which will be send to the user who clicks forgot password", "smtp.gmail.com", "abc@gmail.com", "gmail123"); alert('End Mail'); }