Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

KRL: can I send an email with email:forward()?

Tags:

krl

I'm trying to send an email from my Kynetx extension. As a test run, I set up this rule:

 rule first_rule {
    select when pageview ".*"    
    email:forward() with
    to = "[email protected]" and
    message = "Testing Kynetx Mail" and
    htmlmessage = "<html><body><p>Jed has html</p></body></html>";
    notify("Testing", "email sent");
  }

The notification shows up, but I never see the email, not even in my spam filter. Maybe email:forward() can only be used within the context of

select when mail received

?

As an alternative I guess I can use one of the PostMark-like services or maybe SNS ( http://wiki.kynetx.com/pages/Kynetx_Network_Services_(KNS)_API#SNS_Endpoint ). I just thought it'd be nice to keep it all in Kynetx.

like image 589
Jed Avatar asked Apr 02 '11 16:04

Jed


1 Answers

You can only use the email:forward() action when responding to an event signaled from within the email endpoint, as you guessed.

The best way to do this is with a postmark or sendgrid like service.

We have considered enabling this, but the pains that must be taken to prevent Kynetx from being used as a spam platform have made it a more difficult thing to develop.

If you do use another service, consider creating a module for the service that you can share with others. :)

like image 150
TelegramSam Avatar answered Sep 17 '22 05:09

TelegramSam