im using the latest
version 4.7
this is my code:
MailMessageLoadOptions options = new MailMessageLoadOptions();
options.setMessageFormat(MessageFormat.getMsg());
options.setFileCompatibilityMode(FileCompatibilityMode.SkipValidityChecking);
MailMessage message = MailMessage.load(sFile.getPath(), options);
and this is the warning i have: The method load(String, MessageFormat) from the type MailMessage is deprecated
NB: I had the same warning shown in the link below so i tried to fix it with the code above