- Регистрация
- 28.08.2012
- Сообщения
- 35
- Благодарностей
- 1
- Баллы
- 8
How can i use local variables from the template in c# action:
Example:
// download all messages from gmail via IMAP
Tuple<string, string, string, string>[] allMails;
allMails = ZennoPoster.BulkMailDownload("[email protected]",
"Wang83pass", "imap.gmail.com", 993, true,
ZennoLab.InterfacesLibrary.Enums.Email.EmailProtocol.IMAP,
48*100, 1000, true);
In this way they are hard coded, i need to use local variables instead.
Thanks.
Example:
// download all messages from gmail via IMAP
Tuple<string, string, string, string>[] allMails;
allMails = ZennoPoster.BulkMailDownload("[email protected]",
"Wang83pass", "imap.gmail.com", 993, true,
ZennoLab.InterfacesLibrary.Enums.Email.EmailProtocol.IMAP,
48*100, 1000, true);
In this way they are hard coded, i need to use local variables instead.
Thanks.