2009-04-06 18:49:34 -04:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-09-23 13:52:42 -04:00
|
|
|
USING: smtp namespaces accessors kernel arrays site-watcher.db ;
|
2009-04-06 18:49:34 -04:00
|
|
|
IN: site-watcher.email
|
|
|
|
|
|
|
|
SYMBOL: site-watcher-from
|
|
|
|
site-watcher-from [ "factor-site-watcher@gmail.com" ] initialize
|
|
|
|
|
|
|
|
: send-site-email ( watching-site body subject -- )
|
|
|
|
[ account>> email>> ] 2dip
|
|
|
|
pick [
|
|
|
|
[ <email> site-watcher-from get >>from ] 3dip
|
2015-06-29 19:43:15 -04:00
|
|
|
[ 1array >>to ] [ >>body ] [ >>subject ] tri* send-email
|
2009-09-23 13:52:42 -04:00
|
|
|
] [ 3drop ] if ;
|