/* -*- mode: C++; c-file-style: "gnu" -*- */ #ifndef KMAIL_OPTIONS_H #define KMAIL_OPTIONS_H #include #include static KCmdLineOptions kmail_options () { KCmdLineOptions options; options.add("s"); options.add("subject ", ki18n("Set subject of message")); options.add("c"); options.add("cc
", ki18n("Send CC: to 'address'")); options.add("b"); options.add("bcc
", ki18n("Send BCC: to 'address'")); options.add("h"); options.add("replyTo
", ki18n("Set replyTo to 'address'")); options.add("header ", ki18n("Add 'header' to message. This can be repeated")); options.add("msg ", ki18n("Read message body from 'file'")); options.add("body ", ki18n("Set body of message")); options.add("attach ", ki18n("Add an attachment to the mail. This can be repeated")); options.add("check", ki18n("Only check for new mail")); options.add("composer", ki18n("Only open composer window")); options.add("view ", ki18n("View the given message file" )); options.add("+[address|URL]", ki18n( "Send message to 'address' or " "attach the file the 'URL' points " "to" ) ); return options; } #endif