Automatically pop up reply window when the client open the email [closed] - html

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm an email marketer. I was ask to create an email where if the client open the mail, the reply window with specific email address will pop. Do you have any idea what can I use/do?
Thanks in advance for your help.

You can't. Email doesn't (thankfully) have a feature that would allow you to do that.
You can have replies go to a different address to the one the mail was sent to with a Reply-To header, but you can't hit the reply button for the user. They get to read the email and decide if they want to reply first.

Related

How to set password for file in Google App Script? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I sent a link file via mail to someone in the google app script. I want to ask is there any way to set password for file in google app script? When users enter the link will ask to enter the password.
(sorry, my english is not good)
Based from this thread, there is no password in Google class yet implemented. You can file this as feature request in this link.

HTML Hide input/post name [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Im looking to hide a post request name from the user, So they cannot post to a URL.
For example, Im looking for something that will avoid users checking the post request name and sending something to bypass the restrictions to insert into a database.
If the POST request comes from the user's browser, then they can inspect it. There is no way to avoid that.
Your only option is to make the POST request from somewhere else (such as your server). There is a good chance that you won't be able to do that (due to dependencies on the request coming from the user or included data they supply).
You mention "restrictions". If those restrictions are currently enforced with client side code: Enforce them with server side code.

HTTP request withing email body [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
Using src html and url image from webserver, can the server get the message-id from the email header?
Or, is it possible for an URL to only work with a particular email message?
Ben
No. When an HTTP server gets a request initiated by the user loading remote images in an HTML formatted email, there is no way for it to identify the email.
The closest you could come would be to use unique URLs on a per email basis but that suffers from two flaws:
It might be flagged as tracking code and used to increase the spam score of the email
The URL can be copied by anyone with the email (including by forwarding the whole message) and reused elsewhere

What is the best way to create a UI for an existing Google-Apps-Script? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I created a script using "Google-Apps-Script" that checks if an email has a specific label and a star, and then it takes the email attachment and sends it to another email address.
The script is working fine, but now I want to create a UI where the user can look at the attachment, fill out some text fields and this would result in the file being renamed.
I would then have a button to send that renamed attachment to another email address.
What would be the best way to achieve that ?
From what you have listed, I would go this route to create a GUI for that purpose.
https://developers.google.com/apps-script/guides/html/#create_html_files
You can use an HTML page as the GUI while the script handles everything on the back end.

Need New Username Validation RegEx [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I currently have this in an old system I'm working on:
/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/
It's checking for usernames. I've imported a few email address as username, and these accounts cannot be validated.
How can I modify the above to allow for email addresses? Thanks.
You can use /^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_.#\x7f-\xff]*$/ as regular expression then. However, it does not check whether the email address actually exists, and it allows for syntactical invalid email addresses as well.
As basically all depends on what you define as valid email address, see some references:
http://fightingforalostcause.net/misc/2006/compare-email-regex.php
http://www.regular-expressions.info/email.html