L
longwx
Unregistered / Unconfirmed
GUEST, unregistred user!
我想在主页中提交表单时发送一封E-mail,
我在TWebModule1.WebModule1WebActionItem1Action下是这样写的:
with NMSMTP1 do
begin
Host:='pub3.fz.fj.cn';
Port:=25;
Connect;
with PostMessage do
begin
FromAddress:='longwx@126.com';
FromName:='longwx';
ToAddress[0]:='longwx@126.com';
Subject:='test';
end;
SendMail;
end;
Response.Content:='<html>您的邮件已成功发送,谢谢!</html>';
但结果是"HTTP 500 - 内部服务器错误 Internet Explorer ",
我是在NT上调试的,各位大虾能告诉我为什么吗?
另外我还希望连接失败、发送失败时也能在页面上显示出来,怎么做呢?谢谢!
我在TWebModule1.WebModule1WebActionItem1Action下是这样写的:
with NMSMTP1 do
begin
Host:='pub3.fz.fj.cn';
Port:=25;
Connect;
with PostMessage do
begin
FromAddress:='longwx@126.com';
FromName:='longwx';
ToAddress[0]:='longwx@126.com';
Subject:='test';
end;
SendMail;
end;
Response.Content:='<html>您的邮件已成功发送,谢谢!</html>';
但结果是"HTTP 500 - 内部服务器错误 Internet Explorer ",
我是在NT上调试的,各位大虾能告诉我为什么吗?
另外我还希望连接失败、发送失败时也能在页面上显示出来,怎么做呢?谢谢!