How to get a email from gmail to Wordpress?
-
hey forum, I'm designing an email for an email marketing campaign, and I want that when a person clicks on a button, open a page in WordPress and capture the email of the person who clicked on it to autofill a form with that email. is possible.?
in my case, it's for people to confirm that they want a free value and I would like them not to have to write their mail again.
Thanks
-
hey forum, I'm designing an email for an email marketing campaign, and I want that when a person clicks on a button, open a page in WordPress and capture the email of the person who clicked on it to autofill a form with that email. is possible.?
in my case, it's for people to confirm that they want a free value and I would like them not to have to write their mail again.
Thanks
What does this have to do with Android? The Web Development forum[^] would have been the obvious place to ask this. When you send the email, add the recipient's email address to the hyperlink as a querystring. You'll need to URL-encode it to make sure it transfers properly. For example:
<a href="https://your-wordpress-site/some-page.ext?foo%40test.domain">Click me!</a>
When the user clicks on the link, you can then extract the value from the querystring using server-side code (or Javascript).
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
hey forum, I'm designing an email for an email marketing campaign, and I want that when a person clicks on a button, open a page in WordPress and capture the email of the person who clicked on it to autofill a form with that email. is possible.?
in my case, it's for people to confirm that they want a free value and I would like them not to have to write their mail again.
Thanks
This method allows you to manually connect to Gmail's SMTP servers to send your WordPress emails. First, you need to visit Settings » WP Mail SMTP page to configure the plugin settings. You need to start by providing the Gmail address you want to use in the From email field, and your name in the name field.
-
hey forum, I'm designing an email for an email marketing campaign, and I want that when a person clicks on a button, open a page in WordPress and capture the email of the person who clicked on it to autofill a form with that email. is possible.?
in my case, it's for people to confirm that they want a free value and I would like them not to have to write their mail again.
Thanks
Good work, Keep designing.