Hi,
I wanted to put a signature field in my form and have the image output in an email. So I place html like this in my email:
The signature image is displayed in the debugger email body section but the actual email displays only the alt= caption.
I then tried copying the actual data from the signature field into the <img> src and got the same result - the debugger displays the image correctly but the actual email has a blank field.
Can you see what I am doing wrong please?
Thanks
Tim
I wanted to put a signature field in my form and have the image output in an email. So I place html like this in my email:
<p><strong>Pilot Signature</strong></p>The field {data:pilotsig} contains the base64 encoded image data.
<img src={data:pilotsig}
width="400"
height="150" alt="Pilot Signature" />
The signature image is displayed in the debugger email body section but the actual email displays only the alt= caption.
I then tried copying the actual data from the signature field into the <img> src and got the same result - the debugger displays the image correctly but the actual email has a blank field.
Can you see what I am doing wrong please?
Thanks
Tim
Base 64 encoded images do not work in many email clients, including GMail. You need to save the signature as an image and attach it to the email. I sell a sig-to-image plugin on my site.
So you are saying that I cannot actually have the image embedded in an email using a html <img > tag? It can only be an attachment?
You can
embed it with an img tag, you can't embedd it with an img tag where the src is a base64 string
embed it with an img tag, you can't embedd it with an img tag where the src is a base64 string
the latest v7 update has "save as image" behavior for the signature field!
You need to login to be able to post a reply.