Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML Code Link within an Email to an Email Attachment

Wondering if this is possible. Suppose an email is written in HTML for email clients to render. And an anchor tag exists in the HTML code that is going to be parsed by the email client.

One can reference resources (images, files, etc..) externally from servers. For instance, I can do Download PDF

Is it possible to reference an attachment that was sent along with the email? So attach a PDF and have some tag in the email reference the attachment that's a part of the HTML code.

I don't really want to hear "alternative" solutions. I pretty much want to hear yes/no.

like image 248
FinalForm Avatar asked May 26 '11 23:05

FinalForm


People also ask

How can I put a HTML link inside an email body?

In the Body text section, write in the wording that you want to become a link, like "click here." Click the HTML icon at the top of the Body text section to open the HTML editor. The HTML you'll use is <a href="https://www.website.com/">click here</a>.

How do I make a clickable link in HTML?

To make a hyperlink in an HTML page, use the <a> and </a> tags, which are the tags used to define the links. The <a> tag indicates where the hyperlink starts and the </a> tag indicates where it ends. Whatever text gets added inside these tags, will work as a hyperlink. Add the URL for the link in the <a href=” ”>.

How do you create a link to an email address with a specific subject?

To create a link to send email, use <a> tag, with href attribute. The mail to link is added inside the <a> tag. To add a subject, you need to add ? and then include the subject.


1 Answers

Nope. Each mail client takes care of attachments individually, in their own way. If you could make it work in some clients, rest would fail.

If think that there would be more problems than use.

like image 135
Mārtiņš Briedis Avatar answered Sep 20 '22 17:09

Mārtiņš Briedis