Sending feed back from website to any email - html

i want to include a text field called feed back and a button called submit in my html page.
now how to redirect this feed back entered by user of my site to my business email?

You can do this with the built in HTML form tags, take a look at this example.
Just change action="MAILTO:someone#example.com" to include your business email address instead.

Related

how to make a html login page that connect to database

Lets say I have a login.html page with a html template
And I want to use that login.html template to login to another login.php page.
Say, when a user types in email and password in login.html, I want that login.html page to type the same email and password in my another website which has login.php page.
For this example, lets take blesta - it has a login.php page but the landing page is simple and is not beautiful.
I have another html page named login.html which looks sleek and beautiful but I don't want to transfer users to blesta login.php and then they enter their credentials but rather I want them to enter those credentials in login.html page and those credentials be automatically typed/used in blesta's login.php page and then they get redirected/transferred to dashboard.php inside blesta.
Is it possible?
I tried too much searching but couldn't find any answer yet.
Nova
HTML is a Markup Language not a programming language, so it can't connect directly to any database.
But you can send the form's action of you login.html to the same of the login.php of blesta and add the same name of each input.

How to add a email share button that does that has the subject line and body filled in but not the send address

I am working on a Wordpress website that has social share buttons after creating a post. For the email email share button when a user clicks on the email button it acts as a mail to link and automatically opens a users email client and fills in the send address to the parent site and keeps everything blank.
I want to know how to configure that email button so that when a user clicks the email share button the subject line and body should be filled with the title/link/summary of the news article or event article that they want to share, and the send to line is blank.
Any suggestion on plugins?
I was able to figure out the issue:
One way is using a WP plugin which automatically keeps the To blank, the subject is the post title, and the body is the link.
The other way I found it worked is to use a php function in the mail to link in order to pull the the content
<a href="https://www.exampleSocialMediaSite/shareArticle?mini=true&url=<?php the_permalink(); ?>%2F&title=<?php echo $description; ?>&source=" target="_blank">
or LINK TEXT

How do I put an unsubscribe link on the email next to sender name?

I saw this link in one of my emails.
Screenshot
How do I format my email (html or url) in such a way to have this effect? Is there also a way to format my email to have a "subscribe" button?
See this link. Gmail (and some other email providers) now check the email for an unsubscribe link and automatically copy it to the email header.
There is as far as I'm aware no way of doing this to subscribe to an email.
So to achieve this just include an unsubscribe link as you would normally.

Mailto UTM tracking e-mail link

I have to track a link inside a mailto href. I Need the link inside the e-mail body to be tracked with a UTM. Any possible ways I can go about adding this without showing the utm link part in the e-mail?
Example below
<a href="mailto:?subject=subject&body=body http://www.example.com?utm_source=EmailShare&utm_medium=EmailShare&utm_term=EmailShare&utm_content=research&utm_campaign=website ">
No. But (like most e-mail marketing vendors do) you can create a redirect address that you use in your email and that adds the tracking parameters when it redirects to the destination page (or does the the tracking and then redirects).

how can i get forward email button in html email newsletter?

I'm sending a HTML newsletter for my site using php and HTML. In my HTML newsletter i want to add forward email link. how can i do that?
A link in an email can only open a new browser tab. you can add a new page on your site that contains this functionality and link this page in your email.