-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Allow names in from email addresses
Administrator can set names for the "from" addresses in TypoScript. Those names will be used when sending mails after orders to buyer and seller. Fixes #301
- Loading branch information
Showing
5 changed files
with
132 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,9 @@ the backend via the plugin, but also configured via TypoScript. | |
plugin.tx_cart { | ||
mail { | ||
// Used for emails sent to the customer (=buyer) | ||
buyer { | ||
fromName = Your Brand name | ||
fromAddress = [email protected] | ||
ccAddress = [email protected], [email protected] | ||
bccAddress = [email protected], [email protected] | ||
|
@@ -21,7 +23,10 @@ the backend via the plugin, but also configured via TypoScript. | |
1 = EXT:sitepackage/Resources/Public/Files/AGB.pdf | ||
} | ||
} | ||
// Used for emails sent to the shop owner (=seller) | ||
seller { | ||
fromName = Cart TYPO3 System | ||
fromAddress = [email protected] | ||
toAddress = [email protected], [email protected] | ||
ccAddress = [email protected], [email protected] | ||
|
48 changes: 48 additions & 0 deletions
48
Documentation/Changelog/9.0/Feature-301-AllowEmailNames.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
.. include:: ../../Includes.txt | ||
|
||
================================= | ||
Feature: #301 - Allow Email Names | ||
================================= | ||
|
||
See :issue:`301` | ||
|
||
Description | ||
=========== | ||
|
||
It is now possible to define names which will be used when sending emails. | ||
These names will be shown to the customer and shop owner when receiving mails. | ||
Before only the email address was shown. | ||
|
||
Impact | ||
====== | ||
|
||
Negative effects are not expected. No adding the names will just have the same | ||
result as before. | ||
|
||
As with all the other mail settings those in the plugin take precedence. | ||
|
||
|
||
Migration | ||
========= | ||
See also :ref:`the documentation for email addresses <adminstration_order_mail>`. | ||
|
||
.. code-block:: typoscript | ||
:caption: EXT:sitepackage/Configuration/TypoScript/setup.typoscript | ||
plugin.tx_cart { | ||
mail { | ||
// Used for emails sent to the customer (=buyer) | ||
buyer { | ||
fromName = Your Brand name | ||
// the other settings as shown in the documentation | ||
} | ||
// Used for emails sent to the shop owner (=seller) | ||
seller { | ||
fromName = Cart TYPO3 System | ||
// the other settings as shown in the documentation | ||
} | ||
} | ||
} | ||
.. index:: TypoScript, Frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters