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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 575 - 608 of 798   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
575 maegnas2002 Send Email Apr 13, 2003
4:23 pm
Hello all. I try to send a message and the provider reports: error-message: 501 Invalid base64 data I have never seen this error before the last year and i...
576 aithai Send Email Apr 14, 2003
4:23 pm
Hi, I have loaded an EML with bmp images into the Mail2000 Demo. I add an extra button and a TImage. I try to load the decoded images into a memory stream and...
577 Marcello
mycelo Send Email
Apr 14, 2003
4:40 pm
Hi Aithai, I think you must type the following line before saving the file: Msg.AttachList[lbFiles.ItemIndex].Decode; This will initialize the "Decoded"...
578 aithai Send Email Apr 14, 2003
5:02 pm
Hi Marcello, I still get access violation when I try to load(Click the button). Now I have only two lines. The images are available in the lbFiles.Listbox: ...
579 maegnas2002 Send Email Apr 25, 2003
9:10 pm
Dear Marcello and guests. I have seen several suggestions for bugfixes and other restaurations of the component the last year. I remember some memoryleaks,...
580 maegnas2002 Send Email Apr 25, 2003
9:15 pm
I reply to my own message, to add some extra info to be more specific. If i use SMTP authentication (2 of my providers now require this), the SMTP server does...
581 tvissoc Send Email May 30, 2003
7:04 pm
I'm a novice programmer, so be gentle if my questions are obvious... I'm building a simple mail viewer. I'm using it to view messages that have been...
582 wq_moon Send Email Jun 1, 2003
4:13 pm
I create the TPop2000 dynamicly but as the code below: 1 Pop3Connection.RetrieveMessage(I); 2 MailMessager :=...
583 ghost_3k Send Email Jun 1, 2003
9:35 pm
Hi ... MailMessage:=TMailMessage2000.Create; Pop3Connection.MailMessage:=MailMessage; Pop3Connection.RetrieveMessage(I); MailMeesage.SaveToFile(FileName); ...
584 wq_quake Send Email Jun 2, 2003
5:01 am
Thanks Ghost_3k! I am a chinese, I using the Delphi only 1 month, I am a VC programer for the mail2000 is simple to use, so I learning the delphi and using it!...
585 wq_moon Send Email Jun 2, 2003
5:44 am
I want to receive the mails and save the mails as *.eml files, have a look at my code! MailCount := Pop3Connection.SessionMessageCount; UserName :=...
586 skamradt_rdi Send Email Jun 6, 2003
9:16 pm
I noticed that there is a problem in getting the filename for some messages. An attachment such as image1.jpg was being translated to image1.jpg__image1.jpg....
587 wq_moon Send Email Jun 12, 2003
7:03 am
I want to using the TMail2000 to receive my mails sequentially,but when I receive one mail using such code it works ok, but receive over one mail it cannot...
588 dyne-rose
dynerose2000 Send Email
Jun 12, 2003
7:44 am
wrote wq_moon <wq_moon@...>: use this method !!! POP2000.MailMessage :=msg; for i := 0 to POP2000.SessionMessageCount do begin POP2000.RetrieveHeader(i);...
589 login20042001 Send Email Jun 12, 2003
9:22 am
Sorry , My English is very horrible. I need decoding with Mail2000 the following mail : Received: from hal-4.inet.it ([80.80.80.80]) by www.Company.it (Merak...
590 Marcello
mycelo Send Email
Jun 12, 2003
9:57 am
Hi, For some reason, all double-quotes are duplicated. I don't know if this is common, but the component will not handle this. Regards, ... ===== Marcello...
592 Jazzy Jeff
jazzy_aka Send Email
Jun 16, 2003
2:59 am
I was playing with the demo program and i am wondering how to make some of this code go in sync. In the demo, when you download a message you have to hit the...
593 Marcello
mycelo Send Email
Jun 16, 2003
9:56 am
Hi Mr Jeff, After loading a message, you have to call FindParts to fill the fields (To, From, Subject, etc) of the MailMessage2000 object. Normalize is not...
594 Jazzy Jeff
jazzy_aka Send Email
Jun 17, 2003
12:24 am
Thanks for the response, now i am clear on that. I had forgotten to ask another question, but after searching the archives i found the answer on how to get...
597 David P. Schwartz
digloo Send Email
Jun 26, 2003
4:47 am
I'd like to propose the addition of a hook to handle spam scanning that uses a list of regular expressions to scan the headers and content of messages. Also,...
598 Marcello
mycelo Send Email
Jun 26, 2003
9:47 am
Hi Mr David, As you can see, I am experiencing spam myself (into this group). I have another project, "Supermask&quot; (http://groups.yahoo.com/group/supermask) ...
599 Lúcio Nascimento
lucionascimento Send Email
Jul 5, 2003
8:03 pm
When using the demo of TMail2000, version 1.10.1, at Delphi 7, after typing all the informations at the Message part, and after connecting the SMTP with no...
601 zhenyus Send Email Jul 23, 2003
2:55 am
when the thread run over,it occurs 'access violation ......' here is my code: type TMythread=class(TThread) Private msg:TMailMessage2000; pop:TPop2000; ...
602 Marcello
mycelo Send Email
Jul 23, 2003
10:28 am
Hi Mr Zhenyus, I successfully got 503 messages from a server with this code: unit Unit2; interface uses Classes, Mail2000, SysUtils; type ...
603 zhenyus Send Email Jul 24, 2003
7:48 am
Thanks,Marcello.With your code,I have solved my problem.I create the TPOP2000 object in the 'execute procedure' instead of the constructor,then everything is...
604 olegmironov Send Email Jul 24, 2003
9:04 pm
Hi, I'm a new in Tmail2000 and eml format itself. I have some components to display HTML contest of email, but how I can display embedded images there. HTML...
605 Tony Vissoc
tvissoc Send Email
Aug 1, 2003
6:25 pm
When I do a FindParts, is there a routine for determining what parts were found? I am building a custom mail viewer. In one section I would like to be able...
606 Marcello
mycelo Send Email
Aug 1, 2003
6:49 pm
Hi Mr Tony, You will have to check the AttachList collection, TextPlain and TextHTML strings. Regards, ... ===== Marcello Tavares mycelo@... ICQ 5831833 ...
607 nlhassociates Send Email Aug 3, 2003
10:25 am
I'm in the process of developing an Outlook Express replacement (later to be built into a couple of apps) and I want to duplicate the effect in OE of clicking...
608 gert_nutterts Send Email Aug 3, 2003
12:41 pm
Hiyas, To do that you need to change the params of the form while it is being created. The following code would do the trick ... procedure CreateParams(var...
Messages 575 - 608 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