Copyright © 2009-2011 Marc Worrell Date: 2009-11-02
Authors: Marc Worrell (marc@worrell.nl).
| 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/3 | |
| send/4 | Send a simple text message to an email address. |
| send_admin/3 | Send a simple text message to the administrator. |
| send_page/3 | Send a page to an e-mail address, assumes the correct template "mailing_page.tpl" is available. |
| 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> |
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(MsgId, Email, Context) -> any()
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_page(Email, Id, Context) -> any()
Send a page to an e-mail address, assumes the correct template "mailing_page.tpl" is available. Defaults for these pages are supplied by mod_mailinglist.
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, Dec 10 2012, 20:44:33.