Creating HTML e-mail Distribution Lists from an Access Database

J

Jim

I maintain an Access database which includes e-mail addresses. I also
maintain a Web page where I create various e-mail distribution lists using
the HTML mailto: command. Is there an easy way to get my e-mail addresses
from Access into a Web page with links that when clicked will open an e-mail
addressed to the distribution list. There are 6 different distribution lists
based on various queries from the database and maintaining each of them
manually on the Web page using the mailto: command is a drag.
 
R

Ron Hinds

You don't mention what webserver you are using. If it's IIS then your answer
is a simple ASP page, which might contain the following code snippet (assume
a table named ContactInfo with at least two fields):

<%
oRS.Open "SELECT eMail, DisplayName FROM ContactInfo", oConn, adOpenStatic,
adLockReadOnly

Do Until oRS.EOF
%>
<A href="mailto:<%=oRS("eMail")%>"><%=oRS("DisplayName")</A><BR>
<%
oRS.MoveNext
Loop
%>

You might want to check out this website for more info on using ASP:

http://www.asp101.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top