Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

tmail2000

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1590
  • Category: Delphi
  • Founded: Feb 21, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 238 - 267 of 798   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#238 From: john@...
Date: Wed Dec 5, 2001 1:39 pm
Subject: RE: RE: How do I send embedded picture?
jharperhome
Send Email Send Email
 

Kunikazu
Many thanks for your help.  what you sent me worked very well.
Should I be able to embed more that one picture file?
Is this also supposed to work...When I run it, I only see the first picture.

<HTML>
<HEAD>Test</HEAD>
<BODY>
  This is a test message<BR>
  <IMG src=cid:RedButton.gif><BR>
  Can you see this picture ? 
  <IMG src=cid:picture.jpg><BR>
  Can you see this JPEG picture ?
  <IMG src=cid:anotherpicture.bmp><BR>
  Can you see this BMP picture ?
</BODY>
</HTML>

Many Thanks
John

-----Original Message-----
From: Kunikazu Okada [mailto:kunikazu@...]
Sent: 30 November 2001 10:55 AM
To: tmail2000@yahoogroups.com
Subject: Re:[tmail2000] How do I send embedded picture?


John,
> Can anyone post me an example of how to send an embedded picture in
> an email. 

> What type of text encoding do I need to use on the message
> component and AttachFile method etc.

It depends on your language .
I tested this example with CharSet = us-ascii, TextEncoding = etNoEncoding.

Memo1.Lines = (
<HTML>
<HEAD>Test</HEAD>
<BODY>
  This is a test message<BR>
  <IMG src=cid:RedButton.gif><BR>
  Can you see this picture ?
</BODY>
</HTML>
)

The point is that you should refer to the attached image
 by "cid:filename".
 
Then here is the code:

procedure TForm1.Button1Click(Sender: TObject);
begin
  with MailMsg do begin
    Reset;
    ToList.Add('','kunikazu@...');
    SetFrom('','kunikazu@...');
    Subject := 'Test';
   
    SetTextPlain('This is a test');
    SetTextHtml(Memo1.Lines.Text);
    AttachFile('C:\Data\images\RedButton.gif', 'image/gif', etBase64, True);
   
    RebuildBody;
    //DebugPrint(MessageSource);
  end;

  with SMTP do begin
    Connect;
    SendMessage;
    Quit;
  end;   
end;

At least, I could view the HTML embedded image with Microsoft Outlook 2000.

/// Kunikazu OKADA   ~~~~~~~~~~~~~~~~~~~~~~~~~~~
Teppi Technology LLC ( http://www.teppi.com ),
Tokyo, Japan ___________________________________________///


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Universal Inkjet Refill Kit $29.95
Refill any ink cartridge for less!
Includes black and color ink.
http://us.click.yahoo.com/f00vhB/MkNDAA/ySSFAA/i7folB/TM
---------------------------------------------------------------------~->

=============================================================

The group's home page is here:
  http://groups.yahoo.com/group/tmail2000/

To post a message:
  send email to: tmail2000@yahoogroups.com  
  or go here: http://groups.yahoo.com/group/tmail2000/post

To modify your subcription options (e.g. stop receiving discussions)
go to:
  http://groups.yahoo.com/mygroups/tmail2000/join or
  http://groups.yahoo.com/convwiz

To subscribe/unsubscribe, send blank email to:
  tmail2000-subscribe@yahoogroups.com
  tmail2000-unsubscribe@yahoogroups.com

To talk only with the moderator, developer of TMail2000, write email to:
  mycelo@...

Please expect 1-2 weeks for my response.

PLEASE POST IN ENGLISH!
 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/




#239 From: "jharperhome" <john@...>
Date: Fri Dec 7, 2001 10:55 am
Subject: Memory Problems
jharperhome
Send Email Send Email
 
Hi
I am sending en email to 250 recipients.  The email has several
embedded attachments.
After it has sent about 15 emails, the message...
     "Out of Memory while expanding memory stream"

Has anyone else experienced memory leaks?  Is there an update to the
component or is there some code I need to change.

Thanking you all.
John

#240 From: Marcello <mycelo@...>
Date: Mon Dec 10, 2001 9:13 am
Subject: Re: Memory Problems
mycelo
Send Email Send Email
 
Hi Mr John,

Make sure you have the lastest version of the code, and search the
discussion list threads for memory leaks issues.
I currently have no memory troubles working with large messages, but I
am creating and destroying dinamically the objects.

Regards,

  --- jharperhome <john@...> escreveu: > Hi
> I am sending en email to 250 recipients.  The email has several
> embedded attachments.
> After it has sent about 15 emails, the message...
>     "Out of Memory while expanding memory stream"
>
> Has anyone else experienced memory leaks?  Is there an update to the
> component or is there some code I need to change.
>
> Thanking you all.
> John
>
>

=====
Marcello "Panda" Tavares
mycelo@...
http://mpanda.8m.com
http://groups.yahoo.com/group/piadasdopanda
http://groups.yahoo.com/group/tmail2000
ICQ 5831833
Sorocaba/SP BRAZIL

________________________________________________________________________________\
_______________
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É
fácil e grátis!
http://br.geocities.yahoo.com/

#241 From: fmluciano@...
Date: Mon Dec 17, 2001 3:01 pm
Subject: Luciano F.M. - Duvida Comp. Email 2000
fmluciano@...
Send Email Send Email
 
Olá, Marcelo.

   Parabéns pelo componente que criou, é muito bom mesmo.
   Bem, gostaria de saber como posso enviar, com esse componente, um e-mail
com uma imagem no corpo. Devo enviar um e-mail html e anexar uma imagem, até
aí tudo bem, mas a imagem nao vai no corpo e sim anexa. Como faço para ela
ir no corpo?
   Ah, já existe uma versao mais atual do que a 1.8? Se tiver peço que me
diga onde posso baixar.

   Muito obrigado.

   Atenciosamente,

   Luciano F.M.
   fmluciano@...


_________________________________________________________
Oi! Você quer um iG-mail gratuito?
Então clique aqui: http://registro.ig.com.br/

#242 From: "wolandms" <wolandms@...>
Date: Mon Dec 17, 2001 7:02 pm
Subject: Re: Dynamic creation/deletion of the TMailMessage2000
wolandms
Send Email Send Email
 
Hello there,

   Actually, try using it in a DLL that creates only one message at a
time. What happens in my case is that FSubPartList in TMailPart
contains the owner of the message as well as subparts - thus creating
endless recursion. Here's how I had to modify the destructor in order
for things to work properly:

destructor TMailPart.Destroy;
var
   Loop: Integer;

begin

   for Loop := 0 to FSubPartList.Count-1 do
{ this 'if' is added by me - this completely solved the problem in my
case }
         if (FOwnerMessage <> FSubPartList.Items[Loop]) then
             FSubPartList.Items[Loop].Destroy;

   FHeader.Free;
   FBody.Free;
   FDecoded.Free;
   FSubPartList.Free;

   inherited Destroy;
end;



--- In tmail2000@y..., Marcello <mycelo@y...> wrote:
> Hi Mr,
>
> I use my components dynamically because they are on threads, some
> applications create and destroy it thousands of times in a daily
basis,
> and I never got any problems freeing it. There are several recursive
> calls, but far from fulfilling the stack, and the process of
disposing
> memory is the same in any case.
> Make sure you aren't instancing some objects too much by yourself.
>
> Regards,
>
> > Hi all,
> >
> >   First, thanks to Marcello for the nice set of components.
> > Especially I'm interested in TMailMessage2000. I tried to use it
in
> > my program. Everything seems to work but one thing: when I try to
> > DYNAMICALLY create the component, it is ok, I can work with it,
but
> > when I free it - there's lots of recursive calls which quickly
create
> >
> > stack overflow and thus an access violation. Does anyone use it
in
> > dynamic mode?
> >
> >   Thanks beforehands!
> >
> >
> >
>
> =====
> Marcello "Panda" Tavares
> mycelo@y...
> http://mpanda.8m.com
> http://groups.yahoo.com/group/piadasdopanda
> http://groups.yahoo.com/group/tmail2000
> ICQ 5831833
> Sorocaba/SP BRAZIL
>
>
______________________________________________________________________
_________________________
> Yahoo! GeoCities
> Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo!
GeoCities. É fácil e grátis!
> http://br.geocities.yahoo.com/

#243 From: "wolandms" <wolandms@...>
Date: Mon Dec 17, 2001 7:13 pm
Subject: Re: Dynamic creation/deletion of the TMailMessage2000
wolandms
Send Email Send Email
 
Hi again,

   I absolutely forgot to say: I compiled the code under Delphi 3 and
after commenting everything but bits responsible for TMailMessage2000
only and commenting some cosmetic things (like parameters by default).

   Delphi 3 was a requirenment.
   Anyway, despite TMailMessage2000 looks really nice, I use Internet
Messaging Suite now (I believe I interpreted IMS correctly), where I
added HTML, RTF and TNEF support.



--- In tmail2000@y..., "wolandms" <wolandms@i...> wrote:
> Hello there,
>
>   Actually, try using it in a DLL that creates only one message at
a
> time. What happens in my case is that FSubPartList in TMailPart
> contains the owner of the message as well as subparts - thus
creating
> endless recursion. Here's how I had to modify the destructor in
order
> for things to work properly:
>
> destructor TMailPart.Destroy;
> var
>   Loop: Integer;
>
> begin
>
>   for Loop := 0 to FSubPartList.Count-1 do
> { this 'if' is added by me - this completely solved the problem in
my
> case }
>         if (FOwnerMessage <> FSubPartList.Items[Loop]) then
>             FSubPartList.Items[Loop].Destroy;
>
>   FHeader.Free;
>   FBody.Free;
>   FDecoded.Free;
>   FSubPartList.Free;
>
>   inherited Destroy;
> end;

Best regards,
   Wolandms

#244 From: "Leon Hong" <hleon@...>
Date: Mon Dec 24, 2001 7:09 am
Subject: Quary About SMTP
hleon@...
Send Email Send Email
 
Hello Panda:
  Sorry to bug you like this, but I really don't have a clue to the standard NMSMTP component provided by Delphi.
  The problem is that the email Content-Type automatically tune to multipart/mixed and the message content become plain text (I want it to be HTML format) when there is an attachment with the email, I areadly changed the sub-type to HTML and it should stay the same when I attach the attachment during run time right?
  Can you give me a suggestion please.
 
Thank you very much and merry chrismis.
 
Leon Hong

#245 From: "nlhassociates" <roy.lambert@...>
Date: Tue Dec 25, 2001 6:58 pm
Subject: New Member - how to get all messages
nlhassociates
Send Email Send Email
 
Hi

I've just switched to Mail2000 from Indy - it looks easier, smaller
and faster. I've subscribed to this group so I'll get new messages
but I'd like to be able to download all of the previous messages.
Does anyone know a way to do this???

Thanks

Roy Lambert

#246 From: "David P. Schwartz" <davids@...>
Date: Wed Dec 26, 2001 5:48 am
Subject: Re: New Member - how to get all messages
digloo
Send Email Send Email
 
All messages should be available on the Group's Home Page.  See the link at
the bottom of the emails.

nlhassociates wrote:

> Hi
>
> I've just switched to Mail2000 from Indy - it looks easier, smaller
> and faster. I've subscribed to this group so I'll get new messages
> but I'd like to be able to download all of the previous messages.
> Does anyone know a way to do this???
>
> Thanks
>
> Roy Lambert

#247 From: "stylesie" <stylesie1@...>
Date: Sun Dec 30, 2001 11:25 pm
Subject: (No subject)
stylesie
Send Email Send Email
 
I downloaded Mail 2000 version 1.10.1 from Torry's pages.

The latest version downloadable from this group is 1.9.5.

Is this group still active?

I notice a lot of bugfixes to the mail2000.pas code
from "michaeldmount" ... are these incorporated into the latest
versions of mail 2000?

This is a great set of components. I'm using them to remote control a
Webserver, via E-Mail, what sort of other uses do people out there
have.


   ,-._|\  Colin Styles.
  / YGLU \ Yoogalu PTY LTD
  \_,--._/
        v

#248 From: "Kunikazu Okada" <kunikazu@...>
Date: Mon Dec 31, 2001 1:44 pm
Subject: Re: (unknown)
okd_okd2000
Send Email Send Email
 
> I downloaded Mail 2000 version 1.10.1 from Torry's pages.
>
> Is this group still active?

Yes it is.


> The latest version downloadable from this group is 1.9.5.
>
Although it doesn't appear on top of the list,
1.10.1 is the latest version.
http://groups.yahoo.com/group/tmail2000/files/
mail2000_1.10.1.zip
TMail2000 1.10.1 beta (components / source / example)  36 KB mycelo  09/05/2001

#249 From: "d99mlcn" <micke@...>
Date: Thu Jan 3, 2002 7:51 pm
Subject: TM2k v.1.10.1 - detecting dates, another bug
d99mlcn
Send Email Send Email
 
I've made a small correction in MailDateToDelphiDate() and it seems
to solve the date issue (using the code from the previous date fix).
I changed the line:

if sDateStr[Loop] in [#32, ':', '/'] then

To:

if (sDateStr[Loop] in [#32, ':', '/']) and not (sDateStr[Loop-1] in
[#32, ':', '/']) then


Why:
It couldn't handle a mail header like this:

Date: Wed,  3 Jan 2002 19:59:18 +0100 (CET)

Thanks for the best mail component,

Mike

#250 From: fmluciano@...
Date: Thu Jan 3, 2002 10:39 pm
Subject: Attaching a Gif animated - How can i do?
fmluciano@...
Send Email Send Email
 
Hello,

  I need insert, in the body of e-mail, a gif animated. How can i do it?

  Thank.

  Luciano F.M.
  fmluciano@...

_________________________________________________________
Oi! Você quer um iG-mail gratuito?
Então clique aqui: http://registro.ig.com.br/

#251 From: "mabiao_michael" <mabiao_michael@...>
Date: Fri Jan 4, 2002 2:11 am
Subject: How to send email through SMTP server that need authorize?
mabiao_michael
Send Email Send Email
 
Help!
Many free smtp server need username and password to authorize their
membership, how to send mails through these smtp servers?

#252 From: fmluciano@...
Date: Fri Jan 4, 2002 1:49 pm
Subject: Sending e-mail through ADSL
fmluciano@...
Send Email Send Email
 
Please,
  How to sent a e-mail trough ADSL?

_________________________________________________________
Oi! Você quer um iG-mail gratuito?
Então clique aqui: http://registro.ig.com.br/

#253 From: "mabiao_michael" <mabiao_michael@...>
Date: Wed Jan 9, 2002 1:53 pm
Subject: Mail Priority
mabiao_michael
Send Email Send Email
 
How to set mail's priority?

#254 From: <Tornados@...>
Date: Wed Jan 9, 2002 2:29 pm
Subject: TMAIL Question - Attachments
Tornados@...
Send Email Send Email
 
Hi,
i am searching for a function to read the mailtext but i want to skip the
attachment, so that i can list only Header and plain-text from the mail.
Is it possible. If so, can you plz give me a help???
thx Torni

Gruss Goldi

#255 From: "Kunikazu Okada" <kunikazu@...>
Date: Wed Jan 9, 2002 3:52 pm
Subject: Re: Mail Priority
okd_okd2000
Send Email Send Email
 
> How to set mail's priority?
>

Try something like this.

MailMessage: TMailMessage2000;
MailMessage.SetLabelValue('X-Priority', '1');

There are many different
mail client implemantations,
each writing different X-Priority Header.

Sometimes
X-Priority: 1 (Highest)
X-Priority: 1 (High)
etc.

/// Kunikazu OKADA   ~~~~~~~~~~~~~~~~~~~~~~~~~~~
Teppi Technology LLC ( http://www.teppi.com )
Tokyo, Japan ___________________________________________///

#256 From: "Kunikazu Okada" <kunikazu@...>
Date: Wed Jan 9, 2002 3:27 pm
Subject: Re: TMAIL Question - Attachments
okd_okd2000
Send Email Send Email
 
> i am searching for a function to read the mailtext but i want to skip the
attachment, so that i can list only Header and plain-text from the mail.
> Is it possible. If so, can you plz give me a help???

Yes it is possible.

1. Set the mail message source to MessageSource .
2. Then you can get the Header and PlainText by
	 property Header and
     property TextPlain.

See the source code of the Demo program
included in the TMail2000 package.

/// Kunikazu OKADA   ~~~~~~~~~~~~~~~~~~~~~~~~~~~
Teppi Technology LLC ( http://www.teppi.com )
Tokyo, Japan ___________________________________________///

#257 From: "mabiao_michael" <mabiao_michael@...>
Date: Fri Jan 11, 2002 4:26 am
Subject: Re: Mail Priority
mabiao_michael
Send Email Send Email
 
Thanks for help. It works.

--- In tmail2000@y..., "Kunikazu Okada" <kunikazu@o...> wrote:
> > How to set mail's priority?
> >
>
> Try something like this.
>
> MailMessage: TMailMessage2000;
> MailMessage.SetLabelValue('X-Priority', '1');
>
> There are many different
> mail client implemantations,
> each writing different X-Priority Header.
>
> Sometimes
> X-Priority: 1 (Highest)
> X-Priority: 1 (High)
> etc.
>
> /// Kunikazu OKADA   ~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Teppi Technology LLC ( http://www.teppi.com )
> Tokyo, Japan ___________________________________________///

#258 From: "stylesie" <stylesie1@...>
Date: Sun Jan 13, 2002 11:17 am
Subject: Re: (unknown) My mistake.
stylesie
Send Email Send Email
 
Ah, thanks guys. I fell into the "Latest message at the bottom of the
list" trap.

Sorry, I did not look closely enough

Next time I'll even put a subject in my post :-(

stylesie

#259 From: "megabitit" <martinemail@...>
Date: Sun Jan 13, 2002 10:16 pm
Subject: Priority ans Size of message!!!
martinemail@...
Send Email Send Email
 
There is a way to know size and priority of any messages on my
account?

Thank you

#260 From: "Anderson" <andermuller@...>
Date: Mon Jan 14, 2002 12:01 pm
Subject: Re: Priority ans Size of message!!!
andermuller@...
Send Email Send Email
 
// Priority of Message \\
         if Trim( MailMessage.GetLabelValue( 'X-Priority' ) ) <> '' then
           begin
             case MailMessage.GetLabelValue( 'X-Priority' )[ 1 ] of
               '1': Caption := 'High Priority'
               '3': Caption := 'Normal Priority'
               '5': Caption := 'Low Priority'
             end;
           end;


----- Original Message -----
From: "megabitit" <martinemail@...>
To: <tmail2000@yahoogroups.com>
Sent: Sunday, January 13, 2002 8:16 PM
Subject: [tmail2000] Priority ans Size of message!!!


There is a way to know size and priority of any messages on my
account?

Thank you



=============================================================

The group's home page is here:
   http://groups.yahoo.com/group/tmail2000/

To post a message:
   send email to: tmail2000@yahoogroups.com
   or go here: http://groups.yahoo.com/group/tmail2000/post

To modify your subcription options (e.g. stop receiving discussions)
go to:
   http://groups.yahoo.com/mygroups/tmail2000/join or
   http://groups.yahoo.com/convwiz

To subscribe/unsubscribe, send blank email to:
   tmail2000-subscribe@yahoogroups.com
   tmail2000-unsubscribe@yahoogroups.com

To talk only with the moderator, developer of TMail2000, write email to:
   mycelo@...

Please expect 1-2 weeks for my response.

PLEASE POST IN ENGLISH!


Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/

#261 From: fmluciano@...
Date: Mon Jan 14, 2002 2:49 pm
Subject: How can i send e-mail through ADSL
fmluciano@...
Send Email Send Email
 
Please! How can i send email through high net (ADSL)?
   Help!!!!

_________________________________________________________
Oi! Você quer um iG-mail gratuito?
Então clique aqui: http://registro.ig.com.br/

#262 From: Marcello <mycelo@...>
Date: Mon Jan 14, 2002 3:03 pm
Subject: Re: Attaching a Gif animated - How can i do?
mycelo
Send Email Send Email
 
Hi Mr. Luciano,

You have to attach this picture as embebbed, see the parameters of
Attach method, and in the HTML doc, you must reference this picture as
follows:

<img src=cid:filename.gif>

This should work but will be very dependant of the mail client being
used to render the email.

Regards,

  --- fmluciano@... escreveu: >
>  Hello,
>
>  I need insert, in the body of e-mail, a gif animated. How can i do
> it?
>
>  Thank.
>
>  Luciano F.M.
>  fmluciano@...
>
> _________________________________________________________
> Oi! Você quer um iG-mail gratuito?
> Então clique aqui: http://registro.ig.com.br/
>
>
> ------------------------ Yahoo! Groups Sponsor
>
> =============================================================
>
> The group's home page is here:
>   http://groups.yahoo.com/group/tmail2000/
>
> To post a message:
>   send email to: tmail2000@yahoogroups.com
>   or go here: http://groups.yahoo.com/group/tmail2000/post
>
> To modify your subcription options (e.g. stop receiving discussions)
> go to:
>   http://groups.yahoo.com/mygroups/tmail2000/join or
>   http://groups.yahoo.com/convwiz
>
> To subscribe/unsubscribe, send blank email to:
>   tmail2000-subscribe@yahoogroups.com
>   tmail2000-unsubscribe@yahoogroups.com
>
> To talk only with the moderator, developer of TMail2000, write email
> to:
>   mycelo@...
>
> Please expect 1-2 weeks for my response.
>
> PLEASE POST IN ENGLISH!
>
>
> Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
>
>

=====
Marcello "Panda" Tavares
mycelo@...
http://mpanda.8m.com
http://groups.yahoo.com/group/piadasdopanda
http://groups.yahoo.com/group/tmail2000
ICQ 5831833
Sorocaba/SP BRAZIL

________________________________________________________________________________\
_______________
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É
fácil e grátis!
http://br.geocities.yahoo.com/

#263 From: Marcello <mycelo@...>
Date: Mon Jan 14, 2002 3:06 pm
Subject: Re: Quary About SMTP
mycelo
Send Email Send Email
 
Mr Hong,

Are you using the lastest version?
Please check the component Homepage.

Regards,

  --- Leon Hong <hleon@...> escreveu: > Hello Panda:
>   Sorry to bug you like this, but I really don't have a clue to the
> standard NMSMTP component provided by Delphi.
>   The problem is that the email Content-Type automatically tune to
> multipart/mixed and the message content become plain text (I want it
> to be HTML format) when there is an attachment with the email, I
> areadly changed the sub-type to HTML and it should stay the same when
> I attach the attachment during run time right?
>   Can you give me a suggestion please.
>
> Thank you very much and merry chrismis.
>
> Leon Hong
>

=====
Marcello "Panda" Tavares
mycelo@...
http://mpanda.8m.com
http://groups.yahoo.com/group/piadasdopanda
http://groups.yahoo.com/group/tmail2000
ICQ 5831833
Sorocaba/SP BRAZIL

________________________________________________________________________________\
_______________
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É
fácil e grátis!
http://br.geocities.yahoo.com/

#264 From: Marcello <mycelo@...>
Date: Mon Jan 14, 2002 3:13 pm
Subject: Re: Priority ans Size of message!!!
mycelo
Send Email Send Email
 
To get size of a message, use SessionMessageSize[message-number] after
connection and login.

Regards,

  --- Anderson <andermuller@...> escreveu: > // Priority of
Message \\
>         if Trim( MailMessage.GetLabelValue( 'X-Priority' ) ) <> ''
> then
>           begin
>             case MailMessage.GetLabelValue( 'X-Priority' )[ 1 ] of
>               '1': Caption := 'High Priority'
>               '3': Caption := 'Normal Priority'
>               '5': Caption := 'Low Priority'
>             end;
>           end;
>
>
> ----- Original Message -----
> From: "megabitit" <martinemail@...>
> To: <tmail2000@yahoogroups.com>
> Sent: Sunday, January 13, 2002 8:16 PM
> Subject: [tmail2000] Priority ans Size of message!!!
>
>
> There is a way to know size and priority of any messages on my
> account?
>
> Thank you
>
>
>
> =============================================================
>
> The group's home page is here:
>   http://groups.yahoo.com/group/tmail2000/
>
> To post a message:
>   send email to: tmail2000@yahoogroups.com
>   or go here: http://groups.yahoo.com/group/tmail2000/post
>
> To modify your subcription options (e.g. stop receiving discussions)
> go to:
>   http://groups.yahoo.com/mygroups/tmail2000/join or
>   http://groups.yahoo.com/convwiz
>
> To subscribe/unsubscribe, send blank email to:
>   tmail2000-subscribe@yahoogroups.com
>   tmail2000-unsubscribe@yahoogroups.com
>
> To talk only with the moderator, developer of TMail2000, write email
> to:
>   mycelo@...
>
> Please expect 1-2 weeks for my response.
>
> PLEASE POST IN ENGLISH!
>
>
> Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
>
>
>
>
>

=====
Marcello "Panda" Tavares
mycelo@...
http://mpanda.8m.com
http://groups.yahoo.com/group/piadasdopanda
http://groups.yahoo.com/group/tmail2000
ICQ 5831833
Sorocaba/SP BRAZIL

________________________________________________________________________________\
_______________
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É
fácil e grátis!
http://br.geocities.yahoo.com/

#265 From: "Kunikazu Okada" <kunikazu@...>
Date: Mon Jan 14, 2002 3:58 pm
Subject: Re: How can i send e-mail through ADSL
okd_okd2000
Send Email Send Email
 
Hi

>   Please! How can i send email through high net (ADSL)?
>   Help!!!!
>

There's technically no difference for a software program
between sending email through ADSL and
sending via orginally analog modem ,
as long as you set up TCP/IP correctly.

"Start Outlook Express, compose a message and press "Send" button."
looks a correct answer to your question,
but I wonder you're asking another point, do you ?

Anyway once you can reach your ISP's SMTP server,
it's just SMTP on TCP/IP , and network's lower layer
doesn't matter at all.

Regards.

#266 From: "Kunikazu Okada" <kunikazu@...>
Date: Mon Jan 14, 2002 4:06 pm
Subject: multipart/report
okd_okd2000
Send Email Send Email
 
Hi.

I found that it's not easy to read the
mailer deamon's error mails, because its
Content-Type = multipart/report
and TMailMessage2000 doesn't parse it correctly.

When I process an multipart/report mail,
TextPlain part is just empty and
everything becomes attachment files .

Does anybody implemented the code to read
multipart/report message ?

#267 From: Marcello <mycelo@...>
Date: Wed Jan 16, 2002 9:30 am
Subject: Re: TM2k v.1.10.1 - detecting dates, another bug
mycelo
Send Email Send Email
 
Hi Mr Mike,

That's correct, however, you have to notice that Loop-1 can be out of
bounds in the first iteration. If your Delphi's range checking is
disabled, you can be trashing the contents of the memory.

I believe a better implementation is:

if (Loop > 1) and (sDateStr[Loop] in [#32, ':', '/']) and not
(sDateStr[Loop-1] in [#32, ':', '/']) then

Regards,


> I've made a small correction in MailDateToDelphiDate() and it seems
> to solve the date issue (using the code from the previous date fix).
> I changed the line:
>
> if sDateStr[Loop] in [#32, ':', '/'] then
>
> To:
>
> if (sDateStr[Loop] in [#32, ':', '/']) and not (sDateStr[Loop-1] in
> [#32, ':', '/']) then
>
>
> Why:
> It couldn't handle a mail header like this:
>
> Date: Wed,  3 Jan 2002 19:59:18 +0100 (CET)
>
> Thanks for the best mail component,
>
> Mike
>
>

=====
Marcello "Panda" Tavares
mycelo@...
http://mpanda.8m.com
http://groups.yahoo.com/group/piadasdopanda
http://groups.yahoo.com/group/tmail2000
ICQ 5831833
Sorocaba/SP BRAZIL

________________________________________________________________________________\
_______________
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. É
fácil e grátis!
http://br.geocities.yahoo.com/

Messages 238 - 267 of 798   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help