Hello. I am trying to decode eml file body part encoded with base64. This is the file content example: and this is my code: #include "Base64.au3" #include <FileConstants.au3> Global $g_EmlFile_FullPath = FileOpenDialog(Default, _ @UserProfileDir & "\Downloads", "Eml file format (*.eml)", $FD_FILEMUSTEXIST) If @error Then Exit Global $sEmlBodyDecoded = EmlFileBase64BodyDecoder($g_EmlFile_FullPath) ConsoleWrite($sEmlBodyDecoded