|
アカウントと振り分け先フォルダも取得出来るようにしました。リモートメー
ルの一覧取得で新着を確認した時の、そのメールについての情報も取得出来るよ
うにしました。次のβ版から追加となります。
サンプルマクロ:
loaddll "tkinfo.dll";
#c = dllfunc("RecvMailCountShow") + dllfunc("RemoteMailHotCount");
#i = 0;
while( #i < #c ) {
$s = $s + dllfuncstr("GetLastRecvMailSubject", #i) + " / "
+ dllfuncstr("GetLastRecvMailFrom", #i) + "\n";
#i = #i + 1;
if( strlen($s) >= 4000 ) {
break;
}
}
message $s;
$s = "";
#i = 0;
while( #i < #c ) {
$s = $s + dllfuncstr("GetLastRecvMailAccount", #i) + " / "
+ dllfuncstr("GetLastRecvMailFolder", #i) + "\n";
#i = #i + 1;
if( strlen($s) >= 4000 ) {
break;
}
}
message $s;
|
|