+ Reply to Thread
Results 1 to 4 of 4

Thread: ADF Email

  1. #1
    Senior Member
    Join Date
    Mar 2019
    Location
    Philadelphia, PA, USA
    Posts
    120

    ADF Email

    Hello, what file should be edited to edit the output of form emails?

    Specifically, I want to vehicle leads to be sent in ADF format.

    Thanks

  2. #2
    Flynax developer Rudi's Avatar
    Join Date
    Dec 2014
    Location
    Planet Earth
    Posts
    3,138
    Hello,

    Do you mean html template?

    see it in templates > your template > tpl > html_email_source.html

    also this file is included in includes > classes > rlMail.class.php > public function getEmailTemplate

  3. #3
    Senior Member
    Join Date
    Mar 2019
    Location
    Philadelphia, PA, USA
    Posts
    120
    Thanks Rudi. That definitely helps.

    Is there a way to pass custom form values to the email content?

    Here's my additional form fields:

    <div class="hidden-fields" style="margin-top: 15px;">
    <div class="submit-cell">
    <label for="vehicle_year">Year</label>
    <div class="field"><input type="text" name="vehicle_year" disabled id="vehicle-year" value="{$listing_data.built}" /></div>
    </div>
    <div class="submit-cell">
    <label for="vehicle_make">Make</label>
    <div class="field"><input disabled type="text" name="vehicle_make" id="vehicle-make" value="{$bread_crumbs.2.name}" /></div>
    </div>
    <div class="submit-cell">
    <label for="vehicle_model">Model</label>
    <div class="field"><input disabled type="text" name="vehicle_model" id="vehicle-model" value="{$bread_crumbs.3.name}" /></div>
    </div>
    </div>

  4. #4
    Flynax developer Rudi's Avatar
    Join Date
    Dec 2014
    Location
    Planet Earth
    Posts
    3,138
    Quote Originally Posted by Jason Barbour View Post
    Is there a way to pass custom form values to the email content?
    Only via rlMail.class.php > getEmailTemplate

    but it will require a customization because there is no quick solution

+ Reply to Thread