1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

Merge pull request #3561 from s9e/ticket/10922

[ticket/10922] Added support for body and subject in email BBCode
This commit is contained in:
Tristan Darricau
2015-05-29 16:15:04 +02:00
3 changed files with 31 additions and 4 deletions

View File

@@ -1 +1,9 @@
<a href="mailto:user@example.org">user@example.org</a><a href="mailto:user@example.org">...</a>
<a href="mailto:user@example.org">user@example.org</a><br>
<a href="mailto:user@example.org">...</a><br>
<a href="mailto:user@example.org">...</a><br>
<a href="mailto:user@example.org?subject=Hello">...</a><br>
<a href="mailto:user@example.org?subject=Hi%20there">user@example.org</a><br>
<a href="mailto:user@example.org?body=Hi%20there">user@example.org</a><br>
<a href="mailto:user@example.org?subject=Hello&amp;body=Sent%20from%20phpBB">user@example.org</a><br>
<a href="mailto:user@example.org?subject=Hello&amp;body=Sent%20from%20phpBB">user@example.org</a><br>
<a href="mailto:user@example.org?subject=Hello&amp;body=Sent%20from%20phpBB">...</a><br>

View File

@@ -1 +1,9 @@
[email]user@example.org[/email][email=user@example.org]...[/email]
[email]user@example.org[/email]
[email=user@example.org]...[/email]
[email=user@example.org ]...[/email]
[email=user@example.org subject="Hello"]...[/email]
[email subject="Hi there"]user@example.org[/email]
[email body="Hi there"]user@example.org[/email]
[email subject="Hello" body="Sent from phpBB"]user@example.org[/email]
[email body="Sent from phpBB" subject="Hello"]user@example.org[/email]
[email body="Sent from phpBB" subject="Hello" email="user@example.org"]...[/email]