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 have made a newsletter with html and css,and in my newsletter,there are 4 fields,text boxes I mean,such as users name,family name,phone number and email address.I want to know that how should I save these informations which I get from the user in my newsletter. Should I save them on an excel file on the host?or what?what should I do?I will be so thankful for your help.
It is not possible to add forms in emails, they require server side code and database to work. You should link to a web based form so the email recipient can click and go to the form online to fill it in.
You have to use a server side language to store the data on a server, like PHP.
Instead link to a wufoo or google forms. You cannot embed a form in your email (yet).
Related
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 1 year ago.
Improve this question
I am quite new to HTML and JavaScript and I created this extremely basic website that is meant to be a messaging thing. In theory you type your message and press the send button, and it creates a new HTML element. But the new element is only shown to the window that it is sent on. Here is the link for my deployed code.
In order for everyone to see the changes, you need to have a server where you'll be sending the text after clicking send, and on the server, you'll be broadcasting the received text to all the windows that are open currently.
Check out socket.io it is beginner-friendly to learn this kind of stuff.
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 2 years ago.
Improve this question
Anybody know how to do like this one?(refer to image)i want to make something like this(refer to image) for gmail confirmation on my website, but i don't know where to start.
sample image
This is a broad question, but I'll try to provide some help to get you started.
If you are referring to how to send an email from a website in general, you need to use a script to do so. How you do this is highly dependent on how you are hosting your website. If you are using Node.js, you could take a look at Nodemailer. You will have to do a bit of research with respect to what you are using to host your website.
You would also need some code to generate a link for each users email.
If you are rereferring on how to style email, you can do this with standard HTML and CSS. As far as I know, there is unfortunately no good method to insert HTML source code using Gmail.
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 3 years ago.
Improve this question
I am starting in the Web development and I would like to know how to send HTML forms to the email that is selected, already indicated me PHPMailer but I searched knew and did not understand very well.
Are you just trying to send form information to an email address? If so you probably don't need something like phpMailer but rather just include a mailto: action in the form tag. (example)
It really depends on what exactly you're trying to do the form data you're collecting.
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 8 years ago.
Improve this question
I have been looking everywhere for this answer and I am struggling to find one.
I have a couple of websites and I would like to implement a PSD file I have created for an enquiry form, with HTML that is going to link to Mail Chimp.
Would I need to add the images to the HTML some how?
Does any one know any forums that I could look at?
Thanks in advance :)
Your best bet is to save the images into a folder as jpg's, png's, gif's etc, along with a html file (I use Dreamweaver) and then you zip up all your files once the html file is complete and then upload the zipped files straight to mailchimp.
that's how I got about using mailchimp
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 have a photo-gallery type html page. I am able to send emails using the <a href mailto:> function when a certain picture is selected. I would like to have that picture be automatically included in the email whether as an attachment (preferably) or in the body.
This is impossible.
The mailto: URI scheme provides no mechanism to either attach files or provide HTML formatted email.
The closest you could come would be to specify the URL as plain text in the body of the email (using body= in the query string).
Alternatively, send the email using server side code (which would give you full control over its content).