|
「マクロ登録 - 自動起動」の「あとで送信/今すぐ送信時」の所に登録するマクロ
になるかと思いますが、例えばこんな感じになると思います。
loaddll "tkinfo.dll";
$email = dllfuncstr("CurrentHeaderUnited", "To") + "," + dllfuncstr("Cur
rentHeaderUnited", "Cc");
$email = dllfuncstr("CallByEmailList", "SetEmailOnly", $email);
$email = $email + ",";
$email = dllfuncstr("ToLower", $email);
if( strstr( $email, "@hogehoge.co.jp," ) >= 0 ) {
#n = dllfunc("SetCharSet", "iso-2022-jp", 0);
}
"@hogehoge.co.jp,"の所を適当に書き換えればいいです。複数ある場合は、
if( strstr( $email, "@hogehoge1.co.jp," ) >= 0
|| strstr( $email, "@hogehoge2.co.jp," ) >= 0
|| strstr( $email, "@hogehoge3.co.jp," ) >= 0
) {
みたいに記述すればいいです。
|
|