Changeset 1707

Show
Ignore:
Timestamp:
09/23/04 11:42:40 (4 years ago)
Author:
michelvaldrighi
Message:

added From: header to the mail notification

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/install.php

    r1601 r1707  
    150150$wpdb->query("INSERT INTO $wpdb->users (ID, user_login, user_pass, user_nickname, user_email, user_level, user_idmode) VALUES ( '1', 'admin', MD5('$random_password'), 'Administrator', '$admin_email', '10', 'nickname')"); 
    151151 
    152 mail($admin_email, 'New WordPress Blog', "Your new WordPress blog has been sucessfully set up at: 
     152$from = 'From: '.$_POST['weblog_title'].' <wordpress@'.$_SERVER['SERVER_NAME'].'>'; 
     153$message_headers = "$from"; 
     154 
     155mail($admin_email, 'New WordPress Blog', "Your new WordPress blog has been successfully set up at: 
    153156 
    154157$guessurl 
     
    163166--The WordPress Team 
    164167http://wordpress.org/ 
    165 "); 
     168", $message_headers); 
    166169 
    167170upgrade_all();