Hi Carol,
I assume that you are saying that you cannot figure out who has bounced
because you only have the bounced e-mail address available, and not the name
that goes with it? You could always search the e-mail field of the table used
to store e-mail addresses to find the applicable record.
You can concatenate the names and e-mail addresses together in a query, and
use the concatenated form when copying addresses from the query to paste into
the BCC field of a new message. That way, if the message bounces, you should
still see the concatenated form in the message header. This is exactly how I
used to do this several years ago, when I was maintaining the membership
database for the Pacific NW Access Developer's Group. Consider the following
SQL (Structured Query Language) statement, for a table named "tblMembers",
with fields that include "NameLast", "NameFirst", "NameMI", "EMail Address",
and BouncedMessage (a Yes/No data type used to mark a record as having an
e-mail address that bounces, without actually deleting this person from the
database:
SELECT [NameLast] & " " & [NameFirst] & " " & "<" & [EMail Address] & ">"
AS [Name Last, First & E-Mail Address]
FROM tblMembers
WHERE BouncedMessage=False
ORDER BY NameLast, NameFirst, NameMI;
To use this SQL statement, create a new query in your database. Dismiss the
Add Tables dialog without adding any tables. In query design view, click on
View > SQL View. You should see the word SELECT highlighted. Delete this
default keyword. Copy the SQL statement (Ctrl C) and paste it into the SQL
view (Ctrl V), replacing the SELECT keyword, after making the appropriate
substitutions for the field names and the name of the table in your database.
When you run the query, you should see records similar to this:
Grismore Carol <YourEmailAddress@domain>
Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________
Carol Grismore said:
That makes sense.
I can't prune anybody right now anyhow, as I can't figure out who has bounced!
Thanks!