跳转到内容

Rebol 编程/resend

来自维基教科书,开放书籍,开放世界
RESEND to from message 

转发消息

RESEND 是一个函数值。

  • to -- (类型:任何)
  • from -- (类型:任何)
  • message -- (类型:任何)

源代码

[编辑 | 编辑源代码]
resend: func [
    "Relay a message" 
    to from message /local smtp-port
][
    smtp-port: open [scheme: 'esmtp] 
    insert smtp-port reduce [from reduce [to] message] 
    close smtp-port
]
华夏公益教科书