How can I change font in phpmailer?

Jason Balaoing

I'm planning to send an email with a font style of "century gothic" when received. I hope somebody can help me with my problem. I'm very thankful for your answers.

this is my code

$mail->Body = "

            <html>
                <head></head>
            <body>
                <b>Request ID:</b> $bodystring <br>
                <b>Type:</b> $bodystring1 <br>
                <b>Request:</b> $bodystring2 <br>
                <b>Status:</b> $bodystring3 <br>
                <b>Service:</b> $bodystring4 <br>
                <b>Request Date:</b> $bodystring5 <br>
                <b>Target Date:</b> $bodystring6 <br>
            </body>
";
Martin

HTML email stylings is a minefield of issues, you basically need to revert back to HTML version 4.0 and style everything with inline <font > tags. You will also need to add font as a <style> body{ }</style> tag as well above the <body> tags of your email. There is a lot of reading material on the interet about this as it's a pain in the bum to make cross platform and cross system support. It still uses old tags and keeping as much styling inline as possible is the way. Do not bother calling outside style sheets they'll be dropped by the mailreader.

check SO for similar questions and for more exhaustive answers. Basically things get a lot easier if you don't want or don't need to support Micrsoft Live / Hotmail / Outlook email platform but even then it's still a faffy fiddle.

Please see this post by the guy who now looks after the PHPMailer project: Do we still need to use <font> tags in HTML emails?

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How i can change font to UITextView in swift?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the system font?

From Dev

How can I change the cmd font and font size with a command?

From Dev

How can I change the i3 font on NixOS

From Java

How can I change the default font of a Tkinter application during the mainloop?

From Dev

How can I change gnome terminal font in command line?

From Dev

How can I change the font of the back button for my navigation bar?

From Dev

How can I change the font-size of a select option?

From Dev

How can I change text font in UIPickerView in iOS 7?

From Dev

How can i change the font on ttk.Entry

From Dev

How Can I Change DBChart Series Marks Font RunTime?

From Dev

How can I change the font size of a Gtk.Label in vala?

From Dev

how can i change fontcolor and font type of my listview

From Dev

How can I change font size in Eclipse for ALL text editors?

From Dev

How can I change the font size using seaborn FacetGrid?

From Dev

How can I change the font size of a row dynamically with datatables?

From Dev

How can I change the font style inside <md-button>

From Dev

How can I change the default font size of a XRRichText?

From Dev

How can I change the NavigationController.title.font on the Storyboard?

From Dev

How can i change in TabControl the font size of a tab title?

From Dev

How can I change UIImagePickerController navigation bar font?

From Dev

How can I change gnome terminal font in command line?

From Dev

How can I change the subtitles font size in VLC Media Player?

From Dev

How can I change font background of email text in thunderbird?

From Dev

How can I change font attributes for "Text Entry" in Glade

From Dev

How can i change the font on ttk.Entry

From Dev

How can I change the font size of KDE menus and dialogs...?

Related Related

  1. 1

    How i can change font to UITextView in swift?

  2. 2

    How can I change the size of the Dash font?

  3. 3

    How can I change the size of the Dash font?

  4. 4

    How can I change the system font?

  5. 5

    How can I change the cmd font and font size with a command?

  6. 6

    How can I change the i3 font on NixOS

  7. 7

    How can I change the default font of a Tkinter application during the mainloop?

  8. 8

    How can I change gnome terminal font in command line?

  9. 9

    How can I change the font of the back button for my navigation bar?

  10. 10

    How can I change the font-size of a select option?

  11. 11

    How can I change text font in UIPickerView in iOS 7?

  12. 12

    How can i change the font on ttk.Entry

  13. 13

    How Can I Change DBChart Series Marks Font RunTime?

  14. 14

    How can I change the font size of a Gtk.Label in vala?

  15. 15

    how can i change fontcolor and font type of my listview

  16. 16

    How can I change font size in Eclipse for ALL text editors?

  17. 17

    How can I change the font size using seaborn FacetGrid?

  18. 18

    How can I change the font size of a row dynamically with datatables?

  19. 19

    How can I change the font style inside <md-button>

  20. 20

    How can I change the default font size of a XRRichText?

  21. 21

    How can I change the NavigationController.title.font on the Storyboard?

  22. 22

    How can i change in TabControl the font size of a tab title?

  23. 23

    How can I change UIImagePickerController navigation bar font?

  24. 24

    How can I change gnome terminal font in command line?

  25. 25

    How can I change the subtitles font size in VLC Media Player?

  26. 26

    How can I change font background of email text in thunderbird?

  27. 27

    How can I change font attributes for "Text Entry" in Glade

  28. 28

    How can i change the font on ttk.Entry

  29. 29

    How can I change the font size of KDE menus and dialogs...?

HotTag

Archive