Procesamiento de correos electrónicos entrantes
Configure un receptor que hable el asunto de un mensaje entrante.
In[1]:=
listener =
ChannelListen["mailSpeak",
Speak["From " <> #Message["from"] <>
", message: " <> #Message["msg"]] &,
Permissions -> <|"Owner" -> {"Read", "Execute"}, "All" -> "Write"|>]
Out[1]=
Cree una función MailReceiverFunction que reenvíe el correo recibido a su receptor.
In[2]:=
MailReceiverFunction[With[{user = $WolframID},
ChannelSend[
user <> ":" <> "mailSpeak", <|"msg" -> #Subject,
"from" -> #From|>] &]] // CloudDeploy
Envíe un correo electrónico a la función receptora y escuche a su receptor hablar.
In[3]:=
SendMail[<|"To" -> "receiver+d98iMkU6@wolframcloud.com",
"Subject" -> "Hello There"|>];