no page breaks in email
2008.May.17, 02:06 PM
no page breaks in email
Post: #1
why cant you make page breaks in the emails? this makes for VERY hard to read messages.
2008.May.17, 02:11 PM
 
Post: #2
<br><br>
2008.May.17, 02:13 PM
 
Post: #3
Marlo Wrote:<br><br>

yup. there's a bunch of codes you can use in mass mails.
2008.May.17, 02:44 PM
 
Post: #4
Marlo Wrote:<br><br>


thanks! i tried it and it worked


mudpies is there a site that you know that has all these codes listed? i dont know too much about this stuff obviously
2008.May.17, 02:51 PM
 
Post: #5
they are similar with the BBcodes that are used on this forum too.

Member of Comunità di Sant'Egidio
2008.May.17, 03:44 PM
 
Post: #6
I don't remember what the other codes are. When I was in Diss there was a mass mail detailing a few of them. Maybe one of them can help.
2008.May.17, 04:02 PM
 
Post: #7
Here are the ones that I know work:

Break - <br>

Bold - <b>bold</b>

Big - <big>big</big>

Italicized - <i>Italicized</i>

Super Script - <super>Super Script</super>

Sub Script - <sub>Sub Script</sub>


Don't know if there are any more.
2008.May.17, 04:30 PM
 
Post: #8
yeah... there's tooons more... it's called HTML just so you know.

Colored text:
<font color="#ff0000"> Red text </font>
<font color="#ff8000"> Orange text </font>
<font color="#ffff00"> Yellow text </font>
<font color="#80ff80"> Green text </font>
<font color="#0000ff"> Blue text </font>
<font color="#9805c9"> Violet text </font>
<font color="red"> Red text </font>
<font color="orange"> Orange text </font>
<font color="yellow"> Yellow text </font>
<font color="green"> Green text </font>
<font color="blue"> Blue text </font>
<font color="violet"> Violet text </font>

For different fonts types, you can add to the font tag by putting in face="Arial" or any other common font you want, like Times New Roman for example.

You can make text bigger or smaller by adding size=+1 for bigger text, (change the 1 to 2 or higher to make it bigger, up to 7) or size=-1 for smaller (same here, up to 7)

You can center the text with <center> centered text </center>

You can strikeout text by doing <s> stiked text </s>

To create a link you can do <a href="your URL here"> Click here! </a>

To include an image, you can do <IMG SRC="image URL here">

Theres tons more things you can do but that sums up the majority of it, including what other people said about bold italics and stuff...
2008.May.17, 04:56 PM
 
Post: #9
MaxGhost Wrote:yeah... there's tooons more... it's called HTML just so you know.

Colored text:
<font color="#ff0000"> Red text </font>
<font color="#ff8000"> Orange text </font>
<font color="#ffff00"> Yellow text </font>
<font color="#80ff80"> Green text </font>
<font color="#0000ff"> Blue text </font>
<font color="#9805c9"> Violet text </font>
<font color="red"> Red text </font>
<font color="orange"> Orange text </font>
<font color="yellow"> Yellow text </font>
<font color="green"> Green text </font>
<font color="blue"> Blue text </font>
<font color="violet"> Violet text </font>

For different fonts types, you can add to the font tag by putting in face="Arial" or any other common font you want, like Times New Roman for example.

You can make text bigger or smaller by adding size=+1 for bigger text, (change the 1 to 2 or higher to make it bigger, up to 7) or size=-1 for smaller (same here, up to 7)

You can center the text with <center> centered text </center>

You can strikeout text by doing <s> stiked text </s>

To create a link you can do <a href="your URL here"> Click here! </a>

To include an image, you can do <IMG SRC="image URL here">

Theres tons more things you can do but that sums up the majority of it, including what other people said about bold italics and stuff...

I do believe the link one and image one do not work in game.
2008.May.17, 06:19 PM
 
Post: #10
thanks!