Author |
|
Marcus Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 30 June 2006 at 2:56am | IP Logged
|
|
|
Hi Guys
I am using an asp page to send two plain text emails.
The settings for both emails are identical.
The subject, body and senders, recievers differ.
On the first email instead of inlcuding the following in the email header it places it in the body:
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
X-Mailer: MailBee 5.4
Date: Fri, 30 Jun 2006 07:49:32 +0100
Message-ID: <345653812336584927714@srv-web1>
The second email is fine.
I have checked the BodyText immediately prior to sending and in both cases it looks fine.
Any ideas what I might be doing wrong?
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 30 June 2006 at 9:54am | IP Logged
|
|
|
Could you please insert SaveMessage method calls before Send method calls in your code to save both sending messages to disk as shown below?
Code:
Dim Mailer
Set Mailer = Server.CreateObject("MailBee.SMTP")
' Your code here
' Save the 1st composed message
Mailer.Message.SaveMessage "C:\msg1.eml"
' Send it
Mailer.Send
' Your code here
' Save the 2nd composed message
Mailer.Message.SaveMessage "C:\msg2.eml"
' Send it
Mailer.Send
|
|
|
Then open these files in Outlook Express (by double-clicking them in Windows Explorer), and check whether the headers appear in message body or not. If you see correct message bodies without headers, the problem is caused by the mail server. Some mail servers can modify mail messages during forwarding.
In other case, we need the following details to investigate and fix the problem:
- part of your application code where you are composing and sending messages;
- both resulting .eml files;
- exact version of your MailBee.dll
To get version of MailBee.dll, navigate this file in Windows Explorer (is installed in "C:\Program Files\MailBee" folder by default), right-click this file, choose "Properties", then select "Version" tab and get "File version" field value.
You may send this information to support@afterlogic.com.
Regards,
Alex
|
Back to Top |
|
|