leeue Posted October 16, 2009 Share Posted October 16, 2009 Hello all, Is anyone familiar to the opensource app: webauction? At registration an confirmation email is sent with FROM address: [email protected] Other mails (bids, outbids etc) DO use the right address, given in the conf.ini file. I can't figure out how/where to solve this. Looked in dozens and dozens of files, but no succes so far. The webauction/xataface forum also didn't bring any solution. Maybe here? Kind regards and many thanks for any help, Leeue Link to comment https://forums.phpfreaks.com/topic/177911-solved-webauction-from-address-anonymous/ Share on other sites More sharing options...
leeue Posted October 17, 2009 Author Share Posted October 17, 2009 Xataface admin came with solution. I will post it here. Maybe helpfull for future posters: Add the following method to your application delegate class (located in conf/ApplicationDelegate.php): <code> function getRegistrationActivationEmailInfo(&$record, $activationURL){ return array( 'headers' => ''From: '.getConf('notification_from_address') . "\r\n" . 'Reply-To: '.getConf('notification_from_address') . "\r\n" ); } </code> Thanks to all. Erik Link to comment https://forums.phpfreaks.com/topic/177911-solved-webauction-from-address-anonymous/#findComment-938553 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.