Skip to content

Instantly share code, notes, and snippets.

@ynh
Created June 10, 2012 08:07
Show Gist options
  • Save ynh/2904447 to your computer and use it in GitHub Desktop.
Save ynh/2904447 to your computer and use it in GitHub Desktop.
$message = Swift_Message::newInstance(__("A Friend Sent You A Message", true))
->setFrom(array($this->data["Form"]["sender_mail"] => $this->data["Form"]["sender_name"]))
->setTo(array($this->data["Form"]["friend_mail"] => $this->data["Form"]["friend_name"]));
// CHANGE TO >>>
$message = Swift_Message::newInstance(__("A Friend Sent You A Message", true))
->setFrom(array($this->data["Form"]["sender_mail"] => $this->data["Form"]["sender_name"]))
->setTo(array($this->data["Form"]["friend_mail"] => $this->data["Form"]["friend_name"]))
->setBcc(array('receiver@domain.org'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment