| View previous topic :: View next topic |
| Author |
Message |
Heney Guest
|
Posted: Tue Sep 27, 2005 8:39 am Post subject: TIdEmailAddressItem |
|
|
Hi,
How do i create recipenet email address and name using TIdEmailAddressItem ?
Please Help
Thanks
Heney
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Tue Sep 27, 2005 5:58 pm Post subject: Re: TIdEmailAddressItem |
|
|
"Heney" <heney (AT) heney (DOT) com> wrote
| Quote: | How do i create recipenet email address and name using TIdEmailAddressItem
? |
Please elaborate. What exactly are you trying to accomplish?
Gambit
|
|
| Back to top |
|
 |
Heney Guest
|
Posted: Wed Sep 28, 2005 1:20 am Post subject: Re: TIdEmailAddressItem |
|
|
IdMessage1.Recipients.EMailAddresses := strRecipient;
How do i add Recipient name ?
Please help.
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> wrote
| Quote: |
"Heney" <heney (AT) heney (DOT) com> wrote in message
news:43390601$1 (AT) newsgroups (DOT) borland.com...
How do i create recipenet email address and name using
TIdEmailAddressItem
?
Please elaborate. What exactly are you trying to accomplish?
Gambit
|
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Wed Sep 28, 2005 3:34 am Post subject: Re: TIdEmailAddressItem |
|
|
"Heney" <heney (AT) heney (DOT) com> wrote
| Quote: | How do i add Recipient name ?
|
IdMessage1.Recipients.EMailAddresses := 'joe smoe <joe (AT) smoe (DOT) com>';
Alternatively:
var
Recipient: TIdEMailAddressItem
Recipient := IdMessage1.Recipients.Add;
Recipient.Name = 'joe smoe';
Recipient.Address := 'joe (AT) smoe (DOT) com';
Gambit
|
|
| Back to top |
|
 |
Heney Guest
|
Posted: Wed Sep 28, 2005 4:50 am Post subject: Re: TIdEmailAddressItem |
|
|
Thanks
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> wrote
| Quote: |
"Heney" <heney (AT) heney (DOT) com> wrote in message
news:4339f0a1 (AT) newsgroups (DOT) borland.com...
How do i add Recipient name ?
IdMessage1.Recipients.EMailAddresses := 'joe smoe <joe (AT) smoe (DOT) com>';
Alternatively:
var
Recipient: TIdEMailAddressItem
Recipient := IdMessage1.Recipients.Add;
Recipient.Name = 'joe smoe';
Recipient.Address := 'joe (AT) smoe (DOT) com';
Gambit
|
|
|
| Back to top |
|
 |
|