Hi
Right now, the extension using the From Name and From Email address of Joomla, so you can change it via Joomla Configuration. Login to back-end of your site, access to Site -> Global Configuration, looks at
Server tab, you will see a section called
Mail settings. From there, you can change
Mail From and
From Name to meet your need .
If you want to use something different from Joomla configuration, you will need to edit the code alitle . Open the file components/com_jdonation/helper/helper.php, looks at the line of code at line 135 and 136 :
Code:
$fromEmail = $jconfig->mailfrom;
$fromName = $jconfig->fromname;
You can change it to the email and name you want :
Code:
$fromEmail = 'youremail@yourdomain.com';
$fromName = 'Your Organization Name';
Hope that help !
Regards,
Tuan