Aquarius_Girl
Aquarius_Girl

Reputation: 22926

Mail notifications through Qt on Linux

I want to write a program which would show a pop up if a new mail arrives through Gmail.

What library/api am I supposed to use get notifications from Gmail pro-grammatically?

Upvotes: 1

Views: 102

Answers (1)

Nicholas Smith
Nicholas Smith

Reputation: 11754

You can treat GMail as an IMAP server and work with it like that. You'll want a C++ IMAP library, there's quite a few out there but I'd start with VMime and avoid libEtPan.

Upvotes: 1

Related Questions