-
Notifications
You must be signed in to change notification settings - Fork 117
Email Repeater
cloudspark edited this page Feb 1, 2014
·
2 revisions
An Email Repeater is the most simple graph you can define to get started. It's a 1:1 email receiver which takes the most important SMTP atttributes (such as the message) and forwards it through via an email channel.
Create a SMTP Forwarder Channel :
POST /rest/channel
{
action : "email.smtp_forward",
name : "Helo FuBa"
config : {
rcpt_to : "foo@bar.net"
}
}
RESPONSE
{
id : "email channel id"
}
Create a SMTP bip with a source edge pointing to "Helo FuBa" :
POST /rest/bip
{
type : "smtp",
hub : {
"source" : {
edges : [ "email channel id" ]
}
}
}
RESPONSE
{
name : "lcasKQosWire22" // auto generated
_repr : "lcasKQosWire22@yourdomain.net"
}
Core
Tutorials
Cookbook
- Example Bips
- Email Repeater
- One Time Email Receive
- Email Repeater With Template
- Email Repeater, Dropbox Attachment Save
- Email To RSS
- Web Hook to FB&Twitter
- One Time Message Serve
- RSS Atom Subscribe
- Twitter Followback
- SoundCloud oEmbed (native) Feed
- SoundCloud oEmbed (embedly) Feed
- Instagram Media Sync to Dropbox
Modules
Extras