Reputation: 447
I have a php script that creates email accounts through the cpanel. I am using the xmlapi to do that. What I am looking to do now is to send,receive,delete emails through xmlapi via php. I searched the web but I have not been able to find documentation on the API to help me figure out how to do it.
Any help would be awesome!
Upvotes: 1
Views: 1626
Reputation: 95
I'm pretty sure you can't do this with cpanel API. cPanel is used to manage email accounts, forwarders,.. but not an inbox. Instead you can do that through an IMAP connection.
See more on PHP IMAP reference
Upvotes: 3