HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
image blocking in outlook express
Post new topic   Reply to topic    HTML Help Forum Index -> Images & Graphics
View previous topic :: View next topic  
Author Message
voyeurn3



Joined: 08 Sep 2007
Posts: 2

PostPosted: Sat Sep 08, 2007 8:05 pm     image blocking in outlook express Reply with quote

Hello,I'm from south america (excuse my english) and a complete beginner in html code.
I work at a country club that sends html emails to its
members (just text and a single image). I create the file with dreamweaver , then change the extension to 'txt'.
I give that txt file to my boss who sends it to all the members (by some mailer software I guess).

At first I was told to include images as background with absolute path, for example:

<body>
<table>
<tr><td background="http:wwww.../img.jpg"></td></tr>
</table>
</body>

However, many members use outlook express with image blocking activated.

Then I tried CSS:

<body>
<h3 title="image in hmtl email" style="
width: 300px;
height: 95px;
text-align:center;
position: relative;">
<span style="
background:url(http://www..../image.jpg);
background-repeat:no-repeat;
position: absolute;
width: 86px;
height: 70px;
top: 20px; "></span>email text
</h3>
</body>

It did not work either.
I also tried to embed with base64 coding

<body>
<p> message text</p>
<img src="data:image/gif;base64,eeeee... alt="test">
</body>

That code works perfectly in Firefox but not in IExploer or outlook express.

The only solution I found was to convert the image into a table with 1 cell for each pixel.
See:

http://neil.fraser.name/software/img2html/

But this works only for less than 10k jpg/gif images.

In this forum read the thread about embedding images

http://www.htmlcodetutorial.com/help/archive.php/o_t__t_5309__how-to-embed-image-in-html.html

specially greensweater's post about sending multipart/mime emails.
However I don't understand how to code such an email.

Could I still save that multipart/mime email in txt format? (only my boss has permission to send emails to club members, as I said I'm just a beginner, new employee).

If someone could provide a step by step sample I would be most grateful.

regards.
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8749
Location: Castle Pines North, CO USA

PostPosted: Sun Sep 09, 2007 5:02 am     Reply with quote

Sending HTML emails, you basically have to go back to "old-school" HTML and use deprecated HTML and HTML tables. The absolute paths will be needed as well.

But when you use something like
Code:
<table style="width: 100%">
   <tr>
      <td>&nbsp;</td>
   </tr>
</table>
It needs to be
Code:
<table width="100%">
   <tr>
      <td>&nbsp;</td>
   </tr>
</table>
It just needs to use the deprecated HTML and not CSS.

_________________
Corey
Toll Free Numbers for Real Estate Agents | Merchant Accounts
greensweater



Joined: 08 Aug 2006
Posts: 2

PostPosted: Sun Sep 09, 2007 1:32 pm     Reply with quote

Including images inline in an email requires the use of multipart/related mime type -- this is how email messages may include extra files. I posted some technical details of how this is done in the link you mentioned. Basically all of the attached files are converted into a single text file which is sent as an email.

This raw text data is then received by the email client and converted back into what is displayed (images, HTML, attachments, etc.) With modern emailers, you normally don't see this raw data as it is presented above. (You can see the raw data in Outlook Express by right-clicking the email in the message pane and select "properties" -> "details" tab -> "message source.")

Including the image inline is the only way to avoid seeing the security message in Outlook or Outlook Express. Therefore, whatever software your boss is using to generate the email messages will have to support this function.

I use PHPlist for bulk emails which does support inline images. As I mentioned, http://forums.phplist.com/viewtopic.php?t=4875 goes into detail on how to do it using that software. If you can let us know what your boss is using for your emails maybe someone could give you a step-by-step explanation.
voyeurn3



Joined: 08 Sep 2007
Posts: 2

PostPosted: Tue Sep 11, 2007 6:27 pm     Reply with quote

Thanks corey and greensweater for your answers.
I will ask about the mailer program.
zlatan24



Joined: 17 May 2009
Posts: 3

PostPosted: Sun May 17, 2009 3:35 am     Reply with quote

In suprrise know about tool which works with mails-outlook express database repair,application is free as how as I remember,it tool features powerful data recovery engine, that can restore your email after its corruption as a result of any possible cause, from virus infections to hacker attacks,works with all files of dbx format, even if they are very large,supports all versions of Outlook Express and Microsoft Windows, so, system requirements are rather modest,will automatically move to the next step and permit to preview messages, that were restored during the analysis of corrupted dbx files,utility will unpack dbx files as separate documents of eml format, it is the only option for email recovery, supported by this solution,repair and restore your business contacts and other personal data, stored in your mailbox in Outlook Express format.
zlatan24



Joined: 17 May 2009
Posts: 3

PostPosted: Mon Aug 03, 2009 5:50 am     Re: image blocking in outlook express Reply with quote

voyeurn3 wrote:
Hello,I'm from south america (excuse my english) and a complete beginner in html code.
I work at a country club that sends html emails to its
members (just text and a single image). I create the file with dreamweaver , then change the extension to 'txt'.
I give that txt file to my boss who sends it to all the members (by some mailer software I guess).

At first I was told to include images as background with absolute path, for example:

<body>
<table>
<tr><td background="http:wwww.../img.jpg"></td></tr>
</table>
</body>

However, many members use outlook express with image blocking activated.

Then I tried CSS:

<body>
<h3 title="image in hmtl email" style="
width: 300px;
height: 95px;
text-align:center;
position: relative;">
<span style="
background:url(http://www..../image.jpg);
background-repeat:no-repeat;
position: absolute;
width: 86px;
height: 70px;
top: 20px; "></span>email text
</h3>
</body>

It did not work either.
I also tried to embed with base64 coding

<body>
<p> message text</p>
<img src="data:image/gif;base64,eeeee... alt="test">
</body>

That code works perfectly in Firefox but not in IExploer or outlook express.

The only solution I found was to convert the image into a table with 1 cell for each pixel.
See:

http://neil.fraser.name/software/img2html/

But this works only for less than 10k jpg/gif images.

In this forum read the thread about embedding images

http://www.htmlcodetutorial.com/help/archive.php/o_t__t_5309__how-to-embed-image-in-html.html

specially greensweater's post about sending multipart/mime emails.
However I don't understand how to code such an email.

Could I still save that multipart/mime email in txt format? (only my boss has permission to send emails to club members, as I said I'm just a beginner, new employee).

If someone could provide a step by step sample I would be most grateful.

regards.

I was on the resort,but after that I came back,and saw that all my mails were corrupted.But to my surprise I found on one forum-repair folder outlook express.It helped me very quickly,besides that utility is free as far as I know and it can as well scans Outlook Express default folder and finds dbx files.
zlatan24



Joined: 17 May 2009
Posts: 3

PostPosted: Mon Oct 19, 2009 10:19 am     Reply with quote

Some days aho I opened one good function in MS Outlook and after something happened...All files were inside program were damaged.But fortunately myself helped next tool-outlook data file viewer,and it was free of charge.Moreover tool demonstrated how recover your mailbox and retrieve all contacts, messages, tasks and calendars in less than a minute.
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> Images & Graphics All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial