Hey this sounds just like a problem I had for weeks and I finally figured it out. I
was able to see messages just fine when using Web Messaging, but when it would get
sent to OutLook Express, it would appear blank! I am using ASPMail, which is not
free, but probably very similar.
Here is what I found. When I was creating the message to be sent out, I was using
this:
<snip>
tmpBody = tmpBody & "Your order reads as follows:" & CHR(10) & CHR(13) & CHR(10) &
CHR(13)
tmpBody = tmpBody & "E-Mail Address: " & RSCustomerInfo.Fields("E-Mail") & CHR(10) &
CHR(13) & CHR(10) & CHR(13)
tmpBody = tmpBody & "Ship To:" & CHR(10) & CHR(13)
tmpBody = tmpBody & Session("Name") & CHR(10) & CHR(13)
tmpBody = tmpBody & RSCustomerInfo.Fields("Address") & CHR(10) & CHR(13)
tmpBody = tmpBody & RSCustomerInfo.Fields("City") & ", " &
RSCustomerInfo.Fields("State") & " " & RSCustomerInfo.Fields("Zip") & CHR(10) & CHR(13)
tmpBody = tmpBody & CHR(10) & CHR(13) & CHR(10) & CHR(13)
</snip>
Well, it turns out that this is not correct! I changed the CHR(10) & CHR(13) to be
CHR(13) & CHR(10) reversing the order and everything works great now.
Hope this helps!
Grant Griffith
EI8HT LEGS Web Management Co., Inc.
http://www.ei8htlegs.net
---------- Original Message ----------------------------------
From: "Peter Salvage" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date: Tue, 21 Sep 1999 20:31:49 +0200
>Hi all
>
>I'm hoping that someone has used the ASPEmail free component from
>Persits Software (www.persits.com)
>
>I've generated an ASP script that takes orders, and, using ASPEmail,
>sends an email to our orders dept and a confirmation to the buyer. So
>far so good.
>
>It generates the emails perfectly, with the correct subject line as
>specified in the ASP script...except the body is blank.
>
>After debugging the darn script until my eyes watered, I sent the
>scripts to a friend who runs a Linux Redhat Exim mail server along with
>his NT web server, and guess what? The emails are perfect!!! Bodies and
>everything! I can't find any reference to this on the Ipswitch Knowledge
>Base...so hopefully someone here has knowledge of the above. For the
>record, this is what I'm running on both NT boxes:
>
>WWW Server
>NT4S/SP3/IIS3
>
>Mail Server
>NT4/SP3/iMail v4.07
>
>Thanks In (hopeful) Anticipation :-/
>wiZZ
>
>Please visit http://www.ipswitch.com/support/mailing-lists.html
>to be removed from this list.
>
Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.