Net_NNTP::post()

Net_NNTP::post() -- post a message

Synopsis

require_once 'Net/NNTP.php';

string Net_NNTP::post (string $subject, string $newsgroup, string $from, string $body [, string $additional])

Beschreibung

Post a message to a news server

Parameter

Rückgabewert

string - Server response

Fehler-Meldungen

Tabelle 49-1. Mögliche Fehler-Arten

Error codeError messageReasonSolution
NULL "Not connected" You forgot the set up a connection to a news server or the connection was already again closed. Open a connection before using post(). Check the connection status before using post().

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Warnung

post() doesn't care about character encoding of subject and body. Make sure to set correct headers, if you are using non ASCII-127 characters.

Beispiel