[thelist] How do you view the source of a Lotus Notes Email

TRG java_fella at yahoo.com
Wed Apr 24 12:20:01 CDT 2002


Hi all,

How do you view the source on a Lotus Notes Email
message from within the Notes client?

For example: If I wanted to view in outlook, we'd just
right click...

I am trying to view the HTML code in an HTML Email
than is being munged up when displaying in notes?

Anyone have any good HTML Email in Notes resources?

Thanks.

Tom

--- thelist-request at lists.evolt.org wrote:
> Send thelist mailing list submissions to
> 	thelist at lists.evolt.org
>
> To subscribe or unsubscribe via the World Wide Web,
> visit
> 	http://lists.evolt.org/mailman/listinfo/thelist
>
> You can reach the person managing the list at
> 	thelist-admin at lists.evolt.org
>
> When replying, please edit your Subject line so it
> is more specific
> than "Re: Contents of thelist digest..."
>
>
> Today's Topics:
>
>    1. RE: Table Troubles (John Corry)
>    2. Re: Table Troubles (aardvark)
>    3. Re: _target= opening new window parameters?
> (D.Bruce Saurer)
>    4. today's EGBDF.info
> (JCanfield at magisnetworks.com)
>    5. Successful E-Commerce Visual Designs (Kevin
> James)
>    6. RE: Table Troubles (Chris)
>    7. Re:thelist,spice girls' vocal concert (chris)
>    8. ASP and search engines (Amy Johnson)
>    9. Re: Successful E-Commerce Visual Designs ({
> schaapy })
>   10. Opera has been crashing to much ({ schaapy })
>   11. Re: Opera has been crashing to much (sasha)
>   12. Re: site check/critique (noah)
>   13. RE: ASP and search engines (Marcia Welter)
>   14. Re: today's EGBDF.info (aardvark)
>   15. apology (was RE: [thelist] today's EGBDF.info)
> (Joel Canfield)
>   16. RE: sorting an ASP form dump (aardvark)
>   17. RE: To _blank or not to _blank (Joel Canfield)
>   18. Re: To _blank or not to _blank badda bing,
> badda bang... (Daniel Medley)
>   19. Re: RE: Lotus Notes browser? (Peter-Paul Koch)
>   20. RE: To _blank or not to _blank (Chris Price)
>   21. Re: good DHTML reference (Shirley Kaiser,
> SKDesigns)
>   22. Re: Mac CSS Format Problem (CodeBitch)
>   23. RE: Lotus Notes browser and ASP sessions (Pete
> Riddle)
>   24. Re: Successful E-Commerce Visual Designs
> (aardvark)
>   25. OL and odd values (Olly)
>   26. Re: OL and odd values (Peter-Paul Koch)
>   27. Re: OL and odd values (Joshua Olson)
>   28. RE: OL and odd values (Olly)
>   29. RE: Lotus Notes browser and ASP sessions
> (Ron_Senykoff at beaerospace.com)
>   30. RE: Lotus Notes browser and ASP sessions
> (Chris Blessing)
>   31. DIV, SPAN (Michael Galvin)
>   32. Re: Opera has been crashing to much ({ schaapy
> })
>   33. RE: DIV, SPAN (Jay Blanchard)
>   34. Re: DIV, SPAN ({ schaapy })
>   35. Multiple files (*.*) with Perl under Windows
> (Dovalle Yankelovich)
>   36. RE: sorting an ASP form dump (Ken Kogler)
>   37. Javascript problem with Opera (Peter Small)
>   38. RE: Javascript problem with Opera (Dovalle
> Yankelovich)
>   39. RE: sorting an ASP form dump (aardvark)
>   40. scrolling horizontal screen scripts (Lisa
> Frost)
>
> --__--__--
>
> Message: 1
> From: "John Corry" <webshot at members.evolt.org>
> To: <thelist at lists.evolt.org>
> Subject: RE: [thelist] Table Troubles
> Date: Tue, 23 Apr 2002 15:40:18 -1000
> Reply-To: thelist at lists.evolt.org
>
> > This seems pretty simple but I am having some
> trouble with it.
>
> You're right, it is pretty simple.
>
> I would encourage you to ditch whatever tool you're
> using to generate the
> HTML, as the HTML it generates is practically
> impossible to read. I read
> your code, i tmade my eyes bleed.
>
> The idea is to make a table with 2 rows and 2
> colums:
> kind of like this:
> <table cellpadding="0" cellspacing="0" border="0">
> 	<tr>
> 		<td colspan="2"><!--Header image goes here...put
> it in a table if you
> want--></td>
> 	</tr>
> 	<tr>
> 		<td valign="top"><!-- This is where the links on
> the left side go-->
> <!-- The links in a table will stay together, the
> valign="top" will keep
> that whole table pressed up against the bottom of
> the image in the header
> cell -->
> 			<table cellpadding="0" cellspacing="0"
> border="0">
> 				<tr><td>link 1</td></tr>
> 				<tr><td>link 2</td></tr>
> 				<tr><td>link 3</td></tr>
> 				<tr><td>link 4</td></tr>
> 			</table>
> 		</td>
> 		<td>
> 			<!-- content goes here -->
> 		</td>
> 	</tr>
> </table>
>
> Extra whitespace in your code will make some
> versions of netscape insert
> lines/spaces...watch for that
>
> hth,
> john
>
>
> --__--__--
>
> Message: 2
> From: "aardvark" <roselli at earthlink.net>
> To: thelist at lists.evolt.org
> Date: Tue, 23 Apr 2002 21:40:36 -0400
> Subject: Re: [thelist] Table Troubles
> Reply-To: thelist at lists.evolt.org
>
> > From: "Chris" <axe at suburbia.com.au>
> [...]
> > If you have a look at
> http://members.evolt.org/axelr8/test/ you will
> > see what I am trying to accomplish, however I am
> not happy with how I
> > got it to work. If you click the 'Gamma Cell' link
> you should see the
> > problem I am talking about.
> >
> > What seems to be happening is that the 'content'
> table cell, as it
> > becomes larger, is making the navigation table
> cells too high. The
> > only way I have been able to stop this from
> happening is by specify a
> > large height value for the 'gamma cell', which
> works, but also makes
> > the page very long (as you can see from the first
> page).
> >
> > Is there a more elegant way of doing this?
>
> it's the spans... your nav is in the same table as
> the content... the content
> spans the nav rows, and tries to make them all even
> in height... but height
> attributes aren't allowed...
>
> so nest a table...
>
> instead of <td rowspan="x"> do:
> <td valign="top">
> 	<table>
> 	[nav cells]
> 	</table>
> </td>
>
> that should take care of it...
>
>
> --__--__--
>
> Message: 3
> From: "D.Bruce Saurer" <g1notami at zoominternet.net>
> To: <thelist at lists.evolt.org>
> Subject: Re: [thelist] _target= opening new window
> parameters?
> Date: Tue, 23 Apr 2002 21:55:12 -0400
> Reply-To: thelist at lists.evolt.org
>
> ----- Original Message -----
> From: "aardvark" <roselli at earthlink.net>
>
>
> > <script language="javascript"
> type="text/javascript">
> > function HughWindow() {
> > newWindow =
> >
>
=== message truncated ===


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/



More information about the thelist mailing list