Phplist & php (api)

does phplist have an api for sending mail from php ?

You should look to use the rest api plugin https://resources.phplist.com/plugin/restapi

its only have those method.

__construct()
login()
listAdd()
subscriberFindByEmail()
subscribe()
subscriberGet()
subscriberGetByForeignkey()
subscriberCount()
listSubscriberAdd()
listsSubscriber()
listSubscriberDelete()

I wan to send(queue) email to single email address or subscriber.

@xenofx What are you looking at? There are loads more methods than those you listed. Look at the github repository, which is referenced in the resources.phplist.com page.

currently, I send email to my users with php

function send_email($gonderici,$gonderici_isim,$alici,$alici_isim,$baslik,$dosya="",$alternatif_gonderen="")
{
require_once(‘PHPMailer-master/PHPMailerAutoload.php’);
//Create a new PHPMailer instance
//Passing true to the constructor enables the use of exceptions for error handling
$mail = new PHPMailer(true);
try {

	$mail->isSMTP();
	//Enable SMTP debugging
	// 0 = off (for production use)
	// 1 = client messages
	// 2 = client and server messages
	$mail->SMTPDebug = 0; // eğer hataları göstermek istiyorsa 1 veya 2 yazmalıyız
	//Ask for HTML-friendly debug output
	$mail->Debugoutput = 'html';
	//Set the hostname of the mail server
	$mail->Host = "..........................";

bla
bla
bla
.
.
.
.

So, I want to send email to my users with phplist. because current method does not have queue system.

can anybody reply me if have information.

still i wait any reply pls.