Copyright © 2009 Marc Worrell Date: 2009-11-02
Authors: Marc Worrell (marc@worrell.nl).
bounced/1 | Inform the mail sender gen_server about a bounced message. |
combine_name_email/2 | Combine a name and an email address to the format jan janssen <jan@example.com> |
get_admin_email/1 | Fetch the e-mail address of the site administrator. |
send/2 | Send an email message defined by the email record. |
send/4 | Send a simple text message to an email address. |
send_admin/3 | Send a simple text message to the administrator. |
send_render/4 | Send a html message to an email address, render the message using a template. |
send_render/5 | Send a html and text message to an email address, render the message using two templates. |
sendq/4 | Queue a simple text message to an email address. |
sendq_render/4 | Queue a html message to an email address, render the message using a template. |
sendq_render/5 | Queue a html and text message to an email address, render the message using two templates. |
split_name_email/1 | Split the name and email from the format jan janssen <jan@example.com> |
bounced(MsgId) -> any()
Inform the mail sender gen_server about a bounced message.
combine_name_email(Name, Email) -> any()
Combine a name and an email address to the format jan janssen <jan@example.com>
get_admin_email(Context) -> any()
Fetch the e-mail address of the site administrator
send(Email, Context) -> any()
Send an email message defined by the email record.
send(To, Subject, Message, Context) -> any()
Send a simple text message to an email address
send_admin(Subject, Message, Context) -> any()
Send a simple text message to the administrator
send_render(To, HtmlTemplate, Vars, Context) -> any()
Send a html message to an email address, render the message using a template.
send_render(To, HtmlTemplate, TextTemplate, Vars, Context) -> any()
Send a html and text message to an email address, render the message using two templates.
sendq(To, Subject, Message, Context) -> any()
Queue a simple text message to an email address
sendq_render(To, HtmlTemplate, Vars, Context) -> any()
Queue a html message to an email address, render the message using a template.
sendq_render(To, HtmlTemplate, TextTemplate, Vars, Context) -> any()
Queue a html and text message to an email address, render the message using two templates.
split_name_email(Email) -> any()
Split the name and email from the format jan janssen <jan@example.com>
Generated by EDoc, Feb 25 2011, 21:14:41.