how to force email client to open attachment using html - html

I'm working on a email template with HTML that have a button like "print your ticket", and I would like that when the user click the button, automatically, the client open or download the attachment. Is this possible using only HTML? Are there other solution?
Regards

You can't do this with an attachment. You could however do this by directing the user to a remote link where the attachment was stored using a Print your ticket

Related

PDF Template - HTML Form - Automatically Send To Email

I was hoping I could get some insight as to how to perform the following on my website;
I have a PDF application that I would like users to be able to fill out and hit 'Submit' to automatically send the filled-out application to my email.
Would it be possible to have an editable pdf on a web page that they fill out on the web page? When they are done they would hit submit and it would send a copy of this filled-out pdf to my email
Would it be possible to have an html form that the user fills out and when they hit submit, it automatically creates a copy of the pdf, fills in the fields using the html form information, and sends it to my email?
I have very little knowledge when it comes to this so any sort of assistance would be helpful.
Thank you!
Would it be possible to have an editable pdf on a web page that they fill out on the web page? When they are done they would hit submit and it would send a copy of this filled-out pdf to my email
I don't know about this.
Would it be possible to have an html form that the user fills out and when they hit submit, it automatically creates a copy of the pdf, fills in the fields using the html form information, and sends it to my email?
I know about this.
You can do this by using mpdf and PHPMailer libraries. I am using them in my projects. I will soon paste here an example.

Html link to open and reply to .eml file

I'd like to add a "Reply" button in my web application which can open a .eml email in the user's default mail application (eg Outlook), and hit "Reply".
mailto is clearly not an option since html bodies don't seem to be possible.
Any easy way to do this? Note that the server does have the .eml file

How to trigger email automatically without clicking send button when clicked on Mailto link

My title speaks what i need. Here is my scenario. My application will be sending html formatted emails to user with a Accept/Reject link. I would like to trigger email's automatically with a customized Subject to a mail id when the user clicks on Accept/Reject button.As Recipients of this mails are outlook users,i have to trigger send (ctrl+Enter) button of outlook. Is this possible with a mail-to link.
Please don't suggest opening a page there by i can accomplish my task. That's not i want. Please help on this.
You cannot do that with a mailto link. Why not use the Outlook Object Model to create a new item and send it programmatically? See http://msdn.microsoft.com/en-us/library/ms268749.aspx

Inserting Attachment in Confluence

I wanted to insert an attachment in Confluence, so that I can access the image attachment for my html image tag(url). But I don't want them to appear in the page, is there a way where I can attach it in the page but it will not appear in the page?
one option is to attach it to another page, where your users usually do not go. call it 'technical page' or something.
the other option is to upload the attachment directly to your confluence server, into confluence app directory/confluence/, then you'll be able to reach it on yourcflserver:port/xxxx.png

HTML - Taking screenshot and pasting in email

I have a mailto link in HTML which when clicked, opens an email to IT Support. Is it at all possible to have a screenshot of the screen automatically copied and pasted into this email, without any action from the user?
You can't copy + paste an image directly into the mail client if using a mailto: link. If however you build a support email form, which sends the email server side from your webserver, using methods described in this question it will be possible to automatically include a screenshot of the site.