Welcome, Guest
  • Page:
  • 1

TOPIC: Email Record Form

Email Record Form 2 years, 5 months ago #10747

Just installed Breezingforms and it works and looks great...however.
The form record sent to my email sucks. It is very unclear. Is there a way to generate a nicer looking email record form in Breezingforms?

This is what we get from Breezingform

Form ID: 12
Form title: Free Quote
Form name: free_quote
Submitted at: 2009-12-23 15:16:57
Submitter IP: 188.92.75.82
User-ID: 0
Username: -
User full name: -
Submitter provider: Unknown
Submitter browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) Submitter operating system: win

First Name: gxwawn
Last Name: gxwawn
Company Name: gxwawn
Address: YGByjnSE
City: GrSQnBVNgwevnDu
State: mCGCFucXrUbShIJh
Zip Code: GxokUDoXlpzZMJ
Phone #: JFkmjnyCgcffDMgYm
Email: This email address is being protected from spambots. You need JavaScript enabled to view it.
Estimated Word Count: dUnIeyLy
Number of Pages: MkJNlwlpdUureXts
Number of Documents: MrhGScvDrbiqSubGSQ
Source Language (from): value2
Target Language (to): value2
Desired Timeframe: USzIRdwYoaZRYuyWVI
Subject Matter: value5
Source Document: value4
Target Document: value6

I have attached what we are looking for.
Thanks for all your help

Re: Email Record Form 2 years, 4 months ago #10774

===============================================
Satisfied?
Consider a membership!
===============================================
Like us on Facebook
===============================================
Follow us on Twitter
===============================================

Re: Email Record Form 1 year, 9 months ago #15733

Hi MuffinMan,
I to was asked by my Client to make a nice email layout. I'm a bit confused with the instructions. If I make a "copy" of the mailtpl.txt.php I cannot put it in the same folder. Can I just change the "name" from mailtpl.txt.php to mailtpl.html.php? I do not know how to make a HTML template, or do i need to? Does the new version come with an HTML template installed or do I just modify the mailtpl.txt.php after I rename it? It states to "define" the HTML template. How do I define an HTML template?
Also I cannot find the link to the free upgrade under the Solutions Menu as per instructed. There is a upgrade link but I cannot download the upgrade from ther. Thanks for any help.
  • Chi Chi
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
  • Karma: 0
Last Edit: 1 year, 9 months ago by Chi Chi.

Re: Email Record Form 1 year, 8 months ago #16758

Hi Chi Chi!

If you are working in classic mode, here is a way to do it. deactivate email sent in your form properties. then go again to your form properties and select the tab for transmit?!. I don't know how it is named in english, but it is the last tab. Then select Begin Transmit and set this code:

// load the standard FacileForms library
$this->execPieceByName('ff_InitLib');
// Subject
$Thema = ff_getsubmit('txtThema');
// Date
$Datum = ff_getsubmit('txtDatum');
// Company
$Firma = ff_getsubmit('txtFirma');
// Name
$Name = ff_getsubmit('txtName');
// Phone
$Telefon = ff_getsubmit('txtTelefon');
// EMail
$EMail = ff_getsubmit('txtEMail');
// City 
$Ort = ff_getsubmit('txtOrt');
// People
$Personen = ff_getsubmit('txtPersonen');
// Extra
$Zusatz  = ff_getsubmit('txtZusatz');
// declare globals used in this piece
global $mosConfig_mailfrom, $mosConfig_fromname;
// E-Mail Text (HTML)
$ultimatetext =  "<html><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 20px;font-weight: bold;color:#006699;'><u>Anmeldung</u></span><br/><br/><br/><div style='margin-left: 50px;'><table style='Border: 1px solid #ececec;'>" . 
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Veranstaltung:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Thema . "</span></td></tr>" .
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Datum:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Datum . "</span></td></tr>" .
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Firma:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Firma . "</span></td></tr>" . 
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Name:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Name . "</span></td></tr>" . 
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Telefon:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Telefon . "</span></td></tr>" . 
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>E-Mail:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $EMail . "</span></td></tr>" .
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Ort:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Ort . "</span></td></tr>" .
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Personen:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Personen . "</span></td></tr>" .
					"<tr><td style='width:250px;'><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#000000;'>Weitere Bemerkungen:</span></td><td><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 14px;font-weight: bold;color:#006699;'>" . $Zusatz . "</span></td></tr>" .
					"</table></div><br/><br/><hr/><span style='font-family: Segoe UI,Arial,Helvetica,sans-serif;font-size: 12px;color:#BFBFBF;'>test 2010</span>" .
					"</html>";
// send the mail
$this->sendMail(
    'sender',                					// email addr of submitter (1)
    'TEST',								// name of submitter (1)
    'recepient',              							// email of recipient (2)
    'Anmeldung: ' . $Thema . ' ( zum ' . $Datum . ' )',     // subject of the mail (3)
    $ultimatetext,											// body of the mail (3)
    NULL,
    'TRUE',													// HTML-Trigger
    NULL,
    NULL);


greetings
matthias
  • goshmac
  • OFFLINE
  • Expert Boarder
  • Posts: 113
  • Karma: 5
  • Page:
  • 1
Moderators: TheMuffinMan, ForumSupport
Time to create page: 0.70 seconds

Facebook Discount - 40% Off!

Fans of our Facebook page here are entitled to get a 1-year-subscription for the price of a 6-months!

Steps to take:

  • Become a fan on Facebook (Like) here
  • Purchase a 6-months-subscription from here
  • Write a quick email to This email address is being protected from spambots. You need JavaScript enabled to view it. with your username and prove of your like and we'll upgrade to the 1-year-subscription

Joomla!® Forms Discount - 40% Off!

Already purchased a forms extension from a different vendor but your requirements changed and now you need a forms extension that is capable of more than just the standards? We help you to keep the costs for a change under control: Get a 40% discount on our professional membership plan! -- meaning timely unlimited access to all current and future commercial extensions, breezingforms themes & apps and Joomla!® templates at crosstec.de, including 1 year of support -- without any website limitations -- Just prove that you previously purchased another forms extension for Joomla!® from a different vendor and you are qualified.

Steps to take:

  • Purchase a 1-year-subscription from here
  • Write a quick email to This email address is being protected from spambots. You need JavaScript enabled to view it. with your username and prove of the purchase for the other form vendor and we'll upgrade to the professional-subscription

About

Crosstec GmbH & Co. KG

Bergisch-Gladbacher-Str. 829

51069 Cologne, Germany

Imprint