So far, I've found Twilio which seems great for SMS and Call with Virtual Phone Numbers.
But I can't find a similar way for emails. Is there any I missed?
1–5 of 5 posts
So far, I've found Twilio which seems great for SMS and Call with Virtual Phone Numbers.
But I can't find a similar way for emails. Is there any I missed?
What could work is to just use an internal system for messaging, so that each of your users has a private inbox in your store platform. Kind of like direct messaging in a forum...
For email forwarding, you can have a look at https://github.com/danisola/forward-cat . However, I do not know if this would work for your setup. On top of that, I do not think it handles replies to the email alias, but I am not sure. What could work is to just use an internal system for messaging, so that each of your users has a private inbox in your store platform. Kind of like direct messaging in a forum...
you can use mailgun for that. it has an api and concepts of "routes". you will be able to intercept email from seller@seller_domain.com to buyer@your_domain.com, handle it in your app (mailgun will POST to your web app), and then send from seller@your_domain.com to buyer@buyer_domain.com. really transparent. you can tweak any part of the workflow. have all conversations and all stats in your app.
I'll keep digging up.
Thanks for following up!