Hello.
I'm trying to receive some emails into my MS Access database directly from my Gmail account using CDO 2000 library, but somehow I'm getting an error see the pictures for the error:
VBA CODE
I'm trying to receive some emails into my MS Access database directly from my Gmail account using CDO 2000 library, but somehow I'm getting an error see the pictures for the error:
VBA CODE
Code:
Private Sub CmdNewEmails_Click()
Dim objSession As Object
Dim objInbox As Object
Dim objMessage As Object
Dim strServer As String
Dim strUsername As String
Dim strPassword As String
Dim strMailbox As String
Dim strSubject As String
Dim strBody As String
Dim i As Integer
' **Configuration**
strServer = "smtp.gmail.com" ' Replace with your IMAP server
strUsername = DLookup("[EmailAddress]", "[tblSpecialcompanyDetails]", "[CompanyID] = 1") ' Replace with your email address
strPassword = DLookup("[Password]", "[tblSpecialcompanyDetails]", "[CompanyID] = 1") ' Replace with your email password
strMailbox = DLookup("[EmailAddress]", "[tblSpecialcompanyDetails]", "[CompanyID] = 1") ' Or any mailbox you want to check
' **Create CDO Objects**
Set objSession = CreateObject("CDO.Session")
Set objInbox = CreateObject("CDO.Inbox")
Set objMessage = CreateObject("CDO.Message")
' **Set up the session**
With objSession
.Server = strServer
.UserName = strUsername
.Password = strPassword
.ProfileName = DLookup("[CompanyName]", "[tblSpecialcompanyDetails]", "[CompanyID] = 1") ' Or your profile name
.ImapServer = strServer
.ImapPort = 465 ' Or the appropriate port for your server
.ImapUseSSL = True ' Or False, depending on your server
.ImapServer = strServer
End With
' **Open the mailbox**
With objInbox
.Session = objSession
.Open strMailbox
End With
' **Retrieve emails**
With objInbox
For i = 1 To .MessageCount
Set objMessage = .GetMessage(i)
' **Get email data**
strSubject = objMessage.Subject
strBody = objMessage.Body
' **Store data in Access table (example)**
' Replace "YourTable" with your table name
' Replace the fields with your table fields
With CurrentDb.OpenRecordset("tblEmailReceipts", dbOpenDynaset)
.AddNew
.fields("Subject") = strSubject
.fields("Body") = strBody
.Update
.Close
End With
Next i
End With
' **Clean up objects**
Set objMessage = Nothing
Set objInbox = Nothing
Set objSession = Nothing
End Sub