This shows you the differences between two versions of the page.
|
web_api:mail [2010/07/22 15:46] Kyle Kermgard |
web_api:mail [2010/07/23 12:16] (current) Kyle Kermgard |
||
|---|---|---|---|
| Line 15: | Line 15: | ||
| | //text// and/or //html// | <html><span style="color:#FF0000">Required</span></html> | Must include **one or both** parameters. | The actual content of your email message. It can be sent as either plain text or HTML for the user to display. | | | //text// and/or //html// | <html><span style="color:#FF0000">Required</span></html> | Must include **one or both** parameters. | The actual content of your email message. It can be sent as either plain text or HTML for the user to display. | | ||
| | from | <html><span style="color:#FF0000">Required</span></html> | Must be a valid email address from your domain. | This is where the email will appear to originate from for your recipient. | | | from | <html><span style="color:#FF0000">Required</span></html> | Must be a valid email address from your domain. | This is where the email will appear to originate from for your recipient. | | ||
| - | | from_name | <html><span style="color:#228B22">Optional</span></html> | Must a valid string. | This is name appended to the from email field. IE - Your name or company name. | | + | | fromname | <html><span style="color:#228B22">Optional</span></html> | Must a valid string. | This is name appended to the from email field. IE - Your name or company name. | |
| | replyto | <html><span style="color:#228B22">Optional</span></html> | Must be a valid email address. | Append a reply-to field to your email message. | | | replyto | <html><span style="color:#228B22">Optional</span></html> | Must be a valid email address. | Append a reply-to field to your email message. | | ||
| | date | <html><span style="color:#228B22">Optional</span></html> | Must be a valid RFC 2822 formatted date[[http://www.faqs.org/rfcs/rfc2822|http://www.faqs.org/rfcs/rfc2822]]. | Specify the date header of your email. \\ \\ Example are - "Thu, 21 Dec 2000 16:01:07 +0200". \\ \\ For example, PHP developers can use <code php>date('r');</code> | | | date | <html><span style="color:#228B22">Optional</span></html> | Must be a valid RFC 2822 formatted date[[http://www.faqs.org/rfcs/rfc2822|http://www.faqs.org/rfcs/rfc2822]]. | Specify the date header of your email. \\ \\ Example are - "Thu, 21 Dec 2000 16:01:07 +0200". \\ \\ For example, PHP developers can use <code php>date('r');</code> | | ||