Article Preview
Buy Now
COLUMN
Parse your Mails in Xojo
Using EmailParser
Issue: 22.1 (January/February 2024)
Author: Stefanie Juchmes
Author Bio: Stefanie studied computer science at the university in Bonn. She came in touch with Xojo due to the work of her brother-in-law and got a junior developer position in early 2019 at Monkeybread Software.
Article Description: No description available.
Article Length (in bytes): 7,798
Starting Page Number: 77
Article Number: 22108
Resource File(s):
project 22108.zip Updated: 2023-12-31 23:51:07
Related Link(s): None
Excerpt of article text...
Today we want to start analyzing our emails. For this we have the
EmailParser
section in the MBS CURL plugin.First of all, we need our email. You could just export an eml file from your email application. For Apple Mail simply drag an email to the desktop. The constructor of the
MimeEmailMBS
class can receive it as aMemoryBlock
,String
, orFolderItem
. In this example, we use theFolderItem
option. This also allows us to select the desired file in a dialog.
Dim d As New OpenFileDialog
d.Title = "Load file"
d.PromptText = "Select an Email"
...End of Excerpt. Please purchase the magazine to read the full article.