it does not look like your read my answer in the other community...
here is it again
this is a php server solution…
which means, if the server http://email.etvbanglanews.com/a/mailer.php which will be used to send the mail will go down, all apps, which use this extension will not work anymore…
yes, you will have to trust the developer of that solution, that your data will not be misused…
You can use the web component to replicate the google form (see here for example)
You can then setup a function on the responses google sheet, like this:
function onFormSubmit(e) {
var values = e.namedValues;
var htmlBody = '<ol>';
for (Key in values) {
var label = Key;
var data = values[Key];
htmlBody += '<li>' + label + ": " + data + '</li>';
};
htmlBody += '</ol>';
GmailApp.sendEmail('email@address.com','A New Response From App','',{htmlBody:htmlBody});
}
You have options since you create your own 'form' using code.
I would put it in the Msg2 position (Label4) just like this: 'myEmail@gmail.com' or 'myEmail@yahoo.com'
When your email is sent you have the option to select your sending email client to send the email. In your CONTACT script, I would put it in the Msg2 position (Label4) just like this: 'myEmail@gmail.com' or 'myEmail@yahoo.com' (or add another Label with the information so you do not have to type it in. (without the single quote mark ')
When the other party receives your email, that address becomes a clickable link in the CONTACT message.
You can hard code the CONTACT information on the 'form' and only need to type the recipient email address.
When the people click "submit", Gmail will open and they will be able to send the email. Then, Gmail will be close to go back to the app.
What do you think about it?
However, I have a doubt: in the block "join", in the last string, instead of Gabriel I would like it to show the name that the user writes in the textbox "Your name...". How could I do that, please?
Oh, that's true. It's obvious. I thought I had to write some code after "\n\nsent by", in the same box. I have been working on this project for a long time and my head is about to explode, jaja. Thanks, @SteveJG!
Well, it is now working perfectly. Hopefully it can help other people who are looking for the same.
You have been very kind. Thank you all for your help!