Help with Free Account #85
Replies: 1 comment
-
The recipient's address is configured in the template. In the "Email To" field. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi I am testing the emailjs system and using the FREE Account.
My problem is that I cannot set the receivers email address. Is this a limitation of the FREE service? and default template.
I receive the emails all the time
var param1 = jQuery.QueryString["newuser"];
var param2 = jQuery.QueryString["guid"];
var data = "?newuser=" + param1 + "&guid=" + param2;
if (param1 != undefined && param2 != undefined) {
// Send email to param1
var templateParams = {
from_name: '[email protected]',
user_email: param1,
to_name: param1,
CC: param1,
message: 'Please Confirm Registration by clicking the link ' + 'http://www.georgebrendandoyle.somee.com/ConfirmEmail' + data
};
emailjs.send('myservice', 'mytemplate', templateParams)
.then(function (response) {
alert('SUCCESS! ' + response.status + ' ' + response.text);
}, function (error) {
alert('FAILED...'+ error);
});
}
Beta Was this translation helpful? Give feedback.
All reactions