Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have the following form:
HTML
Ditt namn
    [text* your-name] 

Telefon
    [text* your-phone] 

E-post
    [text* your-email]

In mapping the CF7 Field to 3rd-Party Field, I have the following:
Is Value? CF7 Field       3rd-Party Field
True      123             oid
True      mySource        lead_source
False     your-name       first_name
False     your-phone      phone
False     your-email      email

As is, in SalesForce I will only receive the oid and lead_source but I will not receive the name/phone/email. If however, I set Is Value to True for your-name, in SalesForce I will receive "your-name" (without the quotes) as the first name.

This is the debug that I get when I only have is value set to true for oid and lead_source:
*** Post (to Service) ***
Array
(
    [oid] => 123
    [lead_source] => mySource
)

When I have is value set to true for oid, lead_source and first_name, this is the debug that I get:
*** Post (to Service) ***
Array
(
    [oid] => 123
    [lead_source] => mySource
    [first_name] => your-name
)

Any ideas as to what I am doing wrong please?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900