Link to home
Start Free TrialLog in
Avatar of chantalcookware
chantalcookware

asked on

Send HTML Email With Secure Content

Hello.
I am sending HTML emails with images sourced from my ftp server. When the emails are opened, users may be prompted with "do you want to view only the webpage content that was delivered securely". If click Yes, then the image does not display. What can I change to allow the image to display properly?
Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you use a "protocol relative" URL then you don't have to know in advance if the file is downloaded with SSL.  Where you have something like this:
<img src="http://www.myserver.com/images/logo.gif">
Try without the protocol specifier like this instead:
<img src="//www.myserver.com/images/logo.gif">


ps: I'm assuming the mention of the FTP server is not relevant and that your email doesn't have something like this:
<img src="ftp://user:password@ftp.myserver.com//images/logo.gif">