You appear to be a bot. Output may be restricted
Description
Return the subject of the email
Usage
$string = oiksp_get_email_subject( $subject, $fields );
Parameters
- $subject
- ( string ) optional – email subject
- $fields
- ( array ) optional – reference to the fields array – we update the 'subject' field
Returns
string the email subject
Source
File name: oik-squeeze/includes/oik-squeeze-email.inc
Lines:
1 to 10 of 10
function oiksp_get_email_subject( $subject=null, &$fields=array() ) { if ( null == $subject ) { $subject = "Registration"; } add_filter( "oiksp_email_subject", "oiksp_replace_fields", 1, 2 ); $subject = apply_filters( "oiksp_email_subject", $subject, $fields ); $fields['subject'] = $subject; return( $subject ); }