You are here

function theme_signup_broadcast_sender_copy in Signup 7

Same name and namespace in other branches
  1. 5.2 signup.module \theme_signup_broadcast_sender_copy()
  2. 6.2 theme/email.inc \theme_signup_broadcast_sender_copy()
  3. 6 theme/email.inc \theme_signup_broadcast_sender_copy()

Controls the body of the copy of the broadcast message sent to the sender.

Parameters

string $raw_message: The raw message typed in by the sender with no tokens replaced.

string $cooked_message: The message after all the tokens have been replaced.

Return value

string The final text to put in the email body sent to the broadcast sender.

1 theme call to theme_signup_broadcast_sender_copy()
signup_send_broadcast in includes/broadcast.inc
Send an email message to users who have signed up to a node.

File

theme/email.inc, line 93
Theme functions for generating signup email messages.

Code

function theme_signup_broadcast_sender_copy($variables) {
  $raw_message = $variables['raw_message'];
  $cooked_message = $variables['cooked_message'];
  $output = t('This is a copy of the signup broadcast you just sent.') . "\n";
  $output .= wordwrap(t('Here is the original text you entered, with none of the tokens replaced:'), 72) . "\n";
  $output .= "----------\n";
  $output .= $raw_message;
  $output .= "\n----------\n\n";
  $output .= wordwrap(t('Here is how the message that was sent to each user looked, with all of the tokens replaced (using your account for the user-related tokens):'), 72) . "\n";
  $output .= "----------\n";
  $output .= $cooked_message;
  $output .= "\n----------\n\n";
  return $output;
}