Ik heb nu een ikonboard forum op mijn site maar de email werkt niet. ik weet dat je dit kunt instellen via admin configpanel endat email opties maar ik weet geen goede smtp server die relaying accepteerd. mail.chello.nl werkt ook niet goed naar andere @ adressen.
Nu dacht ik in php heb je:
mail (string to, string subject, string message [, string additional_headers, string [additional_parameters]])
je voort gewoon dus een commando uit.
Kijk ik in de ikonboard files (cgi-bin\Sources\Mail\Sendmail.pm) endaar staat:
sub sendmail {
# original sendmail 1.21 by Christian Mallwitz.
# Modified and 'modulized' by mi@alma.ch
$error = '';
$log = "Mail::Sendmail v. $VERSION - " . scalar(localtime()) . "\n";
local $_;
local $/ = "\015\012";
my (%mail, $k,
$smtp, $server, $port, $connected, $localhost,
$message, $fromaddr, $recip, @recipients, $to, $header,
);
sub fail {
# things to do before returning a sendmail failure
print STDERR @_ if $^W;
$error .= join(" ", @_) . "\n";
close S;
return 0;
}
Kan ik daar ook een mail() commando plaatsen? zoja wat word de source dan
www.ikonboard.com <- om forum te downloaden
Nu dacht ik in php heb je:
mail (string to, string subject, string message [, string additional_headers, string [additional_parameters]])
je voort gewoon dus een commando uit.
Kijk ik in de ikonboard files (cgi-bin\Sources\Mail\Sendmail.pm) endaar staat:
sub sendmail {
# original sendmail 1.21 by Christian Mallwitz.
# Modified and 'modulized' by mi@alma.ch
$error = '';
$log = "Mail::Sendmail v. $VERSION - " . scalar(localtime()) . "\n";
local $_;
local $/ = "\015\012";
my (%mail, $k,
$smtp, $server, $port, $connected, $localhost,
$message, $fromaddr, $recip, @recipients, $to, $header,
);
sub fail {
# things to do before returning a sendmail failure
print STDERR @_ if $^W;
$error .= join(" ", @_) . "\n";
close S;
return 0;
}
Kan ik daar ook een mail() commando plaatsen? zoja wat word de source dan
www.ikonboard.com <- om forum te downloaden