Rebol Programming/resend
Tools
General
Sister projects
In other projects
RESEND to from message
Relay a message
RESEND is a function value.
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]