G
Guest
I have a database that we use to send out end-of-day e-mails to our traders.
I've been asked by several of them to add multiple e-mail addresses, one for
their work account, and another for their mobile device (whatever that may
be).
Technically this is very easy, just call .Recipients.Add a couple of times.
But here's the problem, I have only one row in the db per trader, and one
field for the e-mail. I'd like to avoid changing the db, so I've decided to
store the addresses packed into the field.
So here's the question: is there some easy way to do this? Can I simply
separate them with semicolons, call .Recipients.Add once with the
"multi-address", and have it work?
Maury
I've been asked by several of them to add multiple e-mail addresses, one for
their work account, and another for their mobile device (whatever that may
be).
Technically this is very easy, just call .Recipients.Add a couple of times.
But here's the problem, I have only one row in the db per trader, and one
field for the e-mail. I'd like to avoid changing the db, so I've decided to
store the addresses packed into the field.
So here's the question: is there some easy way to do this? Can I simply
separate them with semicolons, call .Recipients.Add once with the
"multi-address", and have it work?
Maury