Make WordPress Core

Changeset 6266


Ignore:
Timestamp:
10/17/2007 08:19:01 PM (16 years ago)
Author:
westi
Message:

Set the Sender on emails as well as from. Fixes #5007 for 2.3.1 props mattyrob

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/wp-includes/pluggable.php

    r6220 r6266  
    226226    // Set the from name and email
    227227    $phpmailer->From = apply_filters( 'wp_mail_from', $from_email );
     228    $phpmailer->Sender = apply_filters( 'wp_mail_from', $from_email );
    228229    $phpmailer->FromName = apply_filters( 'wp_mail_from_name', $from_name );
    229230
Note: See TracChangeset for help on using the changeset viewer.