B4X Requires Chilkat v11.0.0+
B4X
Imap.GetMailSize vs Email.Size
Shows how to get the total size of an email, as well as the sizes of the attachments. This can be done when either full-emails or headers-only are downloaded.Chilkat B4X Downloads
Dim success As Boolean = False
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim imap As ChilkatImap
imap.Initialize("imap")
' Connect to an IMAP server.
' Use TLS
imap.Ssl = True
imap.Port = 993
success = imap.Connect("imap.example.com")
If success = False Then
Log(imap.LastErrorText)
Return
End If
' Login
success = imap.Login("****", "****")
If success = False Then
Log(imap.LastErrorText)
Return
End If
' Select an IMAP mailbox
success = imap.SelectMailbox("Inbox")
If success = False Then
Log(imap.LastErrorText)
Return
End If
' Get the message IDs of all the emails in the mailbox
' We can choose to fetch UIDs or sequence numbers.
Dim fetchUids As Boolean = True
Dim messageSet As ChilkatMessageSet
messageSet.Initialize
success = imap.QueryMbx("ALL", fetchUids, messageSet)
If success = False Then
Log(imap.LastErrorText)
Return
End If
' When downloading headers, each email object contains
' (obviously) the headers, but the body will be missing.
' Attachments will not be included. However, it is
' possible to get information about the attachments
' as well as the complete size of the email.
Dim bundle As ChilkatEmailBundle
bundle.Initialize
Dim headersOnly As Boolean = True
success = imap.FetchMsgSet(headersOnly, messageSet, bundle)
If success = False Then
Log(imap.LastErrorText)
Return
End If
' Loop over the email objects and display information about each:
Dim email As ChilkatEmail
email.Initialize
Dim i As Int = 0
Dim j As Int = 0
Dim numEmails As Int = bundle.MessageCount
Do While i < numEmails
bundle.EmailAt(i, email)
' Display the From and Subject
Log(email.From)
Log(email.Subject)
' Display the recipients:
j = 0
Do While j < email.NumTo
Log("TO: " & email.GetToName(j) & ", " & email.GetToAddr(j))
j = j + 1
Loop
j = 0
Do While j < email.NumCC
Log("CC: " & email.GetCcName(j) & ", " & email.GetCcAddr(j))
j = j + 1
Loop
' Show the total size of the email, including body and attachments:
Log(email.Size)
' When a full email is downloaded, we would use the
' email.NumAttachments property in conjunction with the
' email.GetMailAttach* methods.
' However, when an email object contains only the header,
' we need to access the attachment info differently:
Dim numAttach As Int = imap.GetMailNumAttach(email)
j = 0
Do While j < numAttach
Log(imap.GetMailAttachFilename(email, j))
Dim attachSize As Int = imap.GetMailAttachSize(email, j)
Log(" size = " & attachSize & " bytes")
j = j + 1
Loop
Log("--")
i = i + 1
Loop
' Disconnect from the IMAP server.
success = imap.Disconnect