请帮忙解决一下出现如下错误的原因?

HunterV 2003-06-17 10:53:21
Hp-ux 11.0 domino 5.0.10
执行Call doc.Send(True,"xiaoli@xxmj")时出错:
notes error:server not responding;但服务器还能正常运行?请多多指教!
...全文
37 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
cslion 2003-06-18
  • 打赏
  • 举报
回复
同意楼上所说的
fengyi999 2003-06-18
  • 打赏
  • 举报
回复
1.xiaoli@xxmj这个邮件地址是否正确!
你换换这个邮件地址试试,换成你已经注册用户所使用的邮箱(例如管理员邮箱)
2.是不是邮件服务器没有响应了,检查邮件服务器,看看时候能接受到外部邮件。
3.If you have only Reader access to a database, you can run a LotusScript agent that creates and sends a document, but the agent will not work if you attach a file to that document.(提高执行这个代理的用户的权限,可以为编辑者)
4.参考帮助一些例子,有一些域必须有,域值必须固定
1. This script mails a document and its form. The document is mailed to the recipients contained in the SendTo item of the document.
Dim doc as NotesDocument
'...set value of doc...
Call doc.Send( True )
2. This script sets the value of the SendTo item in a document. It then mails the document and its form. The document gets mailed to Carl Pycha.
Call doc.ReplaceItemValue( "SendTo", "Carl Pycha" )
Call doc.Save( False, True )
Call doc.Send( True )
3. This script mails a document to Sally Bowles. The form is not mailed.
Call doc.Send( False, "Sally Bowles" )
4. This script mails a document and its form to Jim Dinauer, Betty Dinauer, and Mary Sticka.
Dim recipients( 1 To 3 ) As String
recipients( 1 ) = "Jim Dinauer"
recipients( 2 ) = "Betty Dinauer"
recipients( 3 ) = "Mary Sticka"
Call doc.Send( True, recipients )
5. This script mails a document to anyone listed in its DocAuthor field.
Call doc.Send( True, doc.DocAuthor )
6. This script creates a new document in the current database and mails it to Elissa Minty.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set doc = New NotesDocument( db )
doc.Form = "Memo"
doc.SendTo = "Elissa Minty"
doc.Subject = "Here's the document you wanted"
Call doc.Send( False )

536

社区成员

发帖
与我相关
我的任务
社区描述
企业开发 Exchange Server
社区管理员
  • 消息协作社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧