1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Other sending PDF as email?

Discussion in 'Software' started by geoboy333, 18 Nov 2011.

  1. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    Hi Guys


    So my Mum has just started her business up and has designed a flyer. we have the finished one in a pdf format and now want to electronically distribute these.

    Is there a way to send the PDF as the email, not just an attachment. so that when you open the mail you see the pdf. sort of like a fixed format email like the ones you get from amazon just without hosting all the files elsewhere.

    Thanks

    G
     
  2. Atomic

    Atomic Gerwaff

    Joined:
    6 May 2002
    Posts:
    9,646
    Likes Received:
    94
    No you can't make an email display the pdf, you would need to convert it to images, host them and create the html to display them in the email (like amazon do).

    Printing for a mailshot isn't very expensive, especially if you deliver them yourself rather than pay a company to do it. I guess it depends on how many you are palnning on sending and the type of business.
     
  3. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    In which case. could you tell me how to create a mailshot. could I use my mums website server to host the files? I'm not very good with code so explain it carefully for me please.

    TIA

    G
     
  4. Atomic

    Atomic Gerwaff

    Joined:
    6 May 2002
    Posts:
    9,646
    Likes Received:
    94
    A mailshot is physically printed and put through the mailbox ;)

    Do you know HTML at all?
     
  5. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    very little. I spend most of my time in design view in dreamweaver. I really should try and learn HTML but barely have enough time for my own projects let alone my mothers!

    ED: I am a quick learner however so if you have instructions to give please share them and I would do my best to figure it out.
     
  6. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    ok then, seeing as thats a dead end can I put image protection on an email in thunderbird so people can't right click the images? I am tearing my hair out trying to figure it out.
     
  7. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,953
    Likes Received:
    270
    No, you can't. Your options are :
    • Embedded images in the HTML mail. Once they are in users computer, they can do whatever they want with them.
    • Linked images (to your webserver) in the HTML mail. Same as above.
    • PDF attachment. But users can still make screenshots of it.

    Simply, once anything leaves your computer, it can be duplicated, reproduced. Right click protection and similar techniques are just for internet noobs trying to protect something which can't be protected.
     
  8. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    ok then could you please explain to me how to link up the images to my web server.

    Thanks
     
  9. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,953
    Likes Received:
    270
    HTML mail. Note the HTML. Means the usual img tag with full URL to your image on your server. Your problem will be that most email clients block images by default. The reason is that it is a security risk (tracking 1x1px images).

    The embedded images come in two variants :

    But as you can imagine, it is easy to get images from all three variants. If you link to your server, all you need is to look at source of HTML mail. If you do a cid embedding, you can just download the attachment from the mail. If you do a base64 embedding, all users need to do is to copy the string and run a base64 decode on it.
     
  10. geoboy333

    geoboy333 Sometimes I say something bright...

    Joined:
    28 Sep 2009
    Posts:
    663
    Likes Received:
    11
    right not to contradict what you were saying but I've got the result I wanted by creating the flyer in HTML. All I want to do is be able to put a transparent pic on top of the image in order to "protect" it. this may not be secure in your opinion but I am an "internet noob trying to protect".
     
  11. Atomic

    Atomic Gerwaff

    Joined:
    6 May 2002
    Posts:
    9,646
    Likes Received:
    94
    There is no point. If I wanted to 'steal' your image I could just press print screen, even if it's to big to fit on the screen I can paste multiple screen shots together.

    It's not worth the time or effort.
     
  12. lp rob1

    lp rob1 Modder

    Joined:
    14 Jun 2010
    Posts:
    1,530
    Likes Received:
    140
    So:
    1. Embed the images - kinda self explanatory
    2. Host the images then use an
    Code:
    <img src="http://mumwebsitehere.com/images/flyer.jpg" />
    HTML tag in an HTML email
    3. Attach the PDF
     
  13. RichCreedy

    RichCreedy Hey What Who

    Joined:
    24 Apr 2009
    Posts:
    4,698
    Likes Received:
    172
    copy and paste?
     

Share This Page