Access email

dogdays

Active Member
Joined
Apr 28, 2008
Messages
434
Office Version
  1. 2007
Win 7 pro 32 bit, A2003
I would like to add email capability to a project, have looked on the web and found some packages. Can any one recommend a solution?

tia Jack
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Alan- thanks for reply. I am more interested in a VBA solution, should have mentioned that in the first post. I wish to be able to send a lot of people the same thing, also to send a lot of people tailored emails and finally a single tailored email to one email address. I also would be willing to pay for the software, albeit grudgingly.

Jack
 
Upvote 0
Hi Jack,

Have you tried the FMS Total Access Emailer? Total Access Emailer works as an addin for Microsoft Access. The professional edition of Total Access Emailer offers a programmatic interface for VBA developers, which enables you to execute a given email blast using an event procedure. This product is designed to send email messages to a recipients list within a table recordset. It can also send a single email like you are looking for.

Total Access Emailer is specific to working within Microsoft Access, but it is designed to support linked tables (where the links could point to other databases, excel files etc.). It also supports ADP files and ODBC connections to server databases.

This product supports Access 97 and higher.

There is a free trial version of this product available at the
following URL:
http://www.fmsinc.com/MicrosoftAccess/Email/free-trial.html

See the following URL for a complete product description and guide:
http://www.fmsinc.com/products/emailer/index.asp

John.
FMS Inc.
 
Upvote 0
There are two ways early binding and late binding. Early binding emails from the user's open outlook. Late binding uses CDO and requires a email server. early binding is build into MS Access

***********************************
' ****** Early Binding Outlook
' ***********************************
Dim appOutLook As Outlook.Application
Dim MailOutLook As Outlook.MailItem
Set appOutLook = CreateObject("Outlook.Application")
Set MailOutLook = appOutLook.CreateItem(olMailItem)
'
With MailOutLook
.BodyFormat = olFormatHTML ' olFormatRichText
.To = strTo
.Subject = strSubject
.HTMLBody = strBody
.DeleteAfterSubmit = True 'This lets Outlook send the note without storing it in your sent bin
.Send
End With
 
Upvote 0
Thanks for the replies.
John- I downloaded the trial version but have some questions. Do you have an email address at FMS to whom I may send questions?

tia Jack
 
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,909
Members
452,949
Latest member
beartooth91

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top