Dear visitor, welcome to KDE-Forum.org.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
Well, if you can use something different from KMail, I'll suggest some command-line mailers (as mail). With a simple shell script you can achieve what you want easily.
--
Antonio
You could try using dcop and the openComposer call from KMailIface
Maybe it accepts a comma separated list of addresses for the to, cc, bcc parameters
Cheers,
_
Qt/KDE Developer
Debian User
well, I forgot DCOP.
You can take the list of addresses in your file, pipe them through somethink like xargs, and send kmail a DCOP request for each address.
Hi
--
Antonio
How does this work ?
"send kmail a dcop-request" : can you give me an example please.
i don't know how to handle "dcop-requests"
You can use the application kdcop while running KMail, to list all the interfaces and all the functions of those interfaces available by DCOP.
You can use this functions in shell scripts through the dcop commandline tool
For example
|
Source code
|
1
|
#> dcop kmail KMailIface checkMail
|
will trigger a check for new mails
Cheers,
_
Qt/KDE Developer
Debian User