• Resolved kristin999

    (@kristin999)


    Hello,

    how do I get the email reply to name to be whomever fills out the submission form, as well how do I get the email when it comes in as a lead to be the person that submitted the form? Those areas of the form settings are blanks.

    How do I also get the URL that the form was submitted from to show in the message when the lead is sent to us via email?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Nick Ciske

    (@nickciske)

    Which field are you using for the lead name?

    See “I want to include the full URL the form is embedded on, but SF limits the lead source to 40 characters — how would I do that?” in the FAQ.

    • This reply was modified 8 years ago by Nick Ciske.
    Thread Starter kristin999

    (@kristin999)

    Thanks, not sure that was quite what i was looking for. i don’t think i asked the question correctly.

    In the sales force form that i have added to my website. The plugin is called Brilliant Web To Lead Salesforce, i need the form when it is submitted through and comes to email to have the URL link in the bottom of the form, not the form editor code.

    is anyone able to help me with this?

    thank you,
    Kristin

    Plugin Author Nick Ciske

    (@nickciske)

    If you want it to show in the generated email, you have to put it in a field… whether that is the Lead Source or a custom field.

    I suppose I could append that to the admin email automatically… but it doesn’t do that at present.

    Thread Starter kristin999

    (@kristin999)

    okay, so what is the best way to code in the URL to show in the email that comes through?

    Plugin Author Nick Ciske

    (@nickciske)

    add_filter('salesforce_w2l_cc_admin_email_content','example_salesforce_filter_admin_message', 10, 1);
    
    function example_salesforce_filter_admin_message( $message ){
    
        $message = $message . "\r\n" . 'Form Embed URL: ' . sanitize_url( get_permalink() );
    
        return $message;
    
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to get email reply to code & how to get URL from page to show in message’ is closed to new replies.