Error code 2293 using windows live email

D

Dennis

Hi

I have recently installed windows live email and have Windows 7.

I have a Access 2003 database of club members. I can no longer email
members by clicking on a button. The button runs the following code:

Private Sub btnEMail_Click()

Dim vMessage As String

On Error GoTo ErrorCode

vMessage = Nz(DLookup("EMailSubject", "tblPersonal"))
DoCmd.SendObject acSendNoObject, , , EMail, , , vMessage, , True
AddHistoryRecord MembersNo, "E-Mail Sent :- (" & vMessage & ")"
'add history record
lstHistory.Requery
Exit Sub

ErrorCode:
If Err = 2501 Then Exit Sub
'user Cancels E-Mail
Beep
MsgBox "Error Code " & Err & "; " & Error

End Sub

I can also not mailmerge to email using Word.

In both cases I get "Error Code 2293 - cannot send email". Both worked OK
using Windows XP.

Can someone out there help?

Thanks

Dennis
 

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