mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR documentation
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73232 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
ec09946ae8
commit
187a1f6f30
@ -233,6 +233,9 @@ class Email extends ViewableData {
|
|||||||
/**
|
/**
|
||||||
* Add a custom header to this value.
|
* Add a custom header to this value.
|
||||||
* Useful for implementing all those cool features that we didn't think of.
|
* Useful for implementing all those cool features that we didn't think of.
|
||||||
|
*
|
||||||
|
* @param string $headerName
|
||||||
|
* @param string $headerValue
|
||||||
*/
|
*/
|
||||||
public function addCustomHeader($headerName, $headerValue) {
|
public function addCustomHeader($headerName, $headerValue) {
|
||||||
if($headerName == 'Cc') $this->cc = $headerValue;
|
if($headerName == 'Cc') $this->cc = $headerValue;
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
|
* Mailer objects are responsible for actually sending emails.
|
||||||
|
* The default Mailer class will use PHP's mail() function.
|
||||||
|
*
|
||||||
* @package sapphire
|
* @package sapphire
|
||||||
* @subpackage email
|
* @subpackage email
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Mailer objects are responsible for actually sending emails.
|
|
||||||
* The default Mailer class will use PHP's mail() fun
|
|
||||||
* However, it
|
|
||||||
* One Email::set_mailer();
|
|
||||||
*
|
|
||||||
* @TODO complete the description above
|
|
||||||
*/
|
|
||||||
class Mailer extends Object {
|
class Mailer extends Object {
|
||||||
/**
|
/**
|
||||||
* Send a plain-text email.
|
* Send a plain-text email.
|
||||||
*
|
*
|
||||||
|
* @param string $to
|
||||||
|
* @param string $from
|
||||||
|
* @param string §subject
|
||||||
|
* @param string $plainContent
|
||||||
|
* @param bool $attachedFiles
|
||||||
|
* @param array $customheaders
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
function sendPlain($to, $from, $subject, $plainContent, $attachedFiles = false, $customheaders = false) {
|
function sendPlain($to, $from, $subject, $plainContent, $attachedFiles = false, $customheaders = false) {
|
||||||
@ -319,7 +319,7 @@ function wrapImagesInline_rewriter($url) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Combine headers w/ the body into a single string
|
* Combine headers w/ the body into a single string.
|
||||||
*/
|
*/
|
||||||
function processHeaders($headers, $body = false) {
|
function processHeaders($headers, $body = false) {
|
||||||
$res = '';
|
$res = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user