|
外部のファイルからメールアドレスを取り込んで、それをTo:ヘッダに書き込
むマクロだけなら作られます。それと組み合わせて使ってはどうでしょ?
マクロとしては、
------------------------------------
loaddll "tkinfo.dll";
gofileend;
#xLast = x; #yLast = y;
if( x != 0 ) {
insert "\n";
gofileend;
}
#x = x; #y = y;
insertfile "c:\\temp.txt"; //あくまで例
moveto #x, #y;
beginsel;
gofileend;
replaceallfast "\n", ", ", regular, inselect;
moveto #x, #y;
beginsel;
golineend2;
$s = gettext( seltopx, seltopy, selendx, selendy );
#n = dllfunc("SetHeader", "To", $s);
moveto #xLast, #yLast;
beginsel;
gofileend;
delete;
gofiletop;
------------------------------------
のようになります。
|
|