Page 2 of 4
Re: PB.Ex Mail (Windows)
Posted: Thu Jul 11, 2019 2:54 pm
by RSBasic
PB.Ex Mail 1.1.3.0 has been released.
Changelog:
- Added: SendMailEx(): Aliases for attachments are supported. Example: OriginalFile.zip<AliasFile.zip>
- Bugfix: All passed strings are now checked for NULL.
Re: PB.Ex Mail (Windows)
Posted: Sun Aug 25, 2019 11:19 am
by Little_man
RSBasic,
Is it possible to send an "html" code with "PB.Ex Mail"?
Little_Man
Re: PB.Ex Mail (Windows)
Posted: Sun Aug 25, 2019 2:27 pm
by RSBasic
Hello Little_man
Yes, if you create and send an email with PB.Ex Mail, your content will be sent as HTML.
Re: PB.Ex Mail (Windows)
Posted: Sun Aug 25, 2019 10:13 pm
by Little_man
Thanks "RSBasic" for your information.
Another question:
it is possible to place the code below in a
"dll":
Result = OpenMailEx(ID, Protocol, MailServer$, Port, UserName$, Password$, SSL, @ErrorOutput$)
Result = SendMailEx(ID, Subject$, Body$, Priority, From$, ToAddress$, CC$, BCC$, Attachments$, @ErrorOutput$)
Result = CloseMailEx(ID, @ErrorOutput$)
Little _man
Re: PB.Ex Mail (Windows)
Posted: Sun Aug 25, 2019 10:51 pm
by RSBasic
I didn't test it with DLL. I don't know if it works.
Re: PB.Ex Mail (Windows)
Posted: Thu May 07, 2020 4:12 pm
by GG
Hi RSBasic,
First of all, thank you for your library and your code. It allows me to go further in a project at work.
However, one question :
When I try to use DeleteMailEx (inside a ExamineMailEx loop with while, like in your pb example file) in a gmail (IMAP, SSL) mailbox, I feel like it skips the next mail.
For example in a mailbox :
Mail1
Mail2
Mail3
When I remove Mail1 for example, I feel like the Mail2 is never scanned, and it goes directly in Mail3. Do you ever have experienced a thing like this ?
Confirmed with your snippet example code PB.Ex_mail.pb. Have i missed something ?
Re: PB.Ex Mail (Windows)
Posted: Tue Aug 04, 2020 6:24 am
by QuimV

surely the question is not smart, but I have to ask it anyway.
Where can I download this library?
Thanks
Re: PB.Ex Mail (Windows)
Posted: Tue Aug 04, 2020 7:01 am
by infratec
Look at the bottom of the first post.

Re: PB.Ex Mail (Windows)
Posted: Tue Aug 04, 2020 7:44 am
by QuimV

Thanks a lot!
Re: PB.Ex Mail (Windows)
Posted: Tue Aug 04, 2020 8:46 am
by GG
Hi all,
Do some of you have already noticed the problem described in my mail above (May, 07, 2020) ?
Re: PB.Ex Mail (Windows)
Posted: Tue Aug 04, 2020 11:04 am
by QuimV
When I ejecute the function OpenMailEx(), I get the message:
Error: Received an unexpected EOF or 0 bytes from the transport stream.
Someone knows to that can it be?
Thanks in advance.
Re: PB.Ex Mail (Windows)
Posted: Sun Mar 14, 2021 8:35 am
by BarryG
Just trying this lib with POP3 and Gmail, but it keeps giving a result of "Error: No such host is known".
Here are the Gmail POP3 settings ->
https://support.google.com/mail/answer/7104828
I've turned POP3 on as those settings say, and saved the changes.
Here's the relevant code that I'm using to try to open the mail with this lib:
Code: Select all
If OpenMailEx(1, #PBEx_Mail_Protocol_POP3, "pop3.gmail.com", 995, "myname@gmail.com", "mypassword", 1, @ErrorOutput$)
Any ideas?
Re: PB.Ex Mail (Windows)
Posted: Mon Nov 29, 2021 4:17 pm
by RSBasic
PB.Ex Mail 1.1.4.0 has been released.
Changelog:
- Changed: OpenMailEx(): Additional parameter "ProtocolVersion" (SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2 supported)
Re: PB.Ex Mail (Windows)
Posted: Tue Nov 30, 2021 9:00 am
by dige
Re: PB.Ex Mail (Windows)
Posted: Mon Dec 06, 2021 6:21 pm
by RSBasic
PB.Ex Mail 1.1.5.0 has been released.
Changelog:
- Bugfix: MailEntryHeaderEx(): First character was missing.