Kiran Kolte

Results 5 comments of Kiran Kolte

``` mail = ImapSmtp(smtp_server="smtp.gmail.com", smtp_port=587) mail.authorize(account=__gmail_account, password=__gmail_password) if not inbox_folder: mails = mail.list_messages(mail_criteria, source_folder='GmailFolderName') print(mails) else: mails = mail.list_messages(mail_criteria, source_folder='Inbox') ``` I tried to print mails variable, but bcz of...

> And your `mail_criteria` is some sort of string ? Yes, it's a string.

> And what is the specific Python version you are using ? Python version should be determined by x.yz version number like `3.8.7` and not just `3.8` . My apologies,...

> I run your example with rpaframework versions 13.0.0 and 13.2.0 without problems. > > ``` > from RPA.Email.ImapSmtp import ImapSmtp > from RPA.Robocorp.Vault import Vault > > > def...

> What kind of criteria do you mean? I got error in this two example criteria: 'Subject "Invoice" Subject "My Company" Unseen' and 'Subject "Invoice" Subject "My Industries & Co"...