E-Mail not beeing send / Array Error

SeniorDingDong 20 Jan, 2014
Hey,

I just installed the current version of the Chronoforms Component (5.0 RC3.1).
I created a simple form (one checkbox, one textfield, submit button), HTML renderForm onLoad, onsubmit (email, dbsave and debug). I setup the e-mail with a static from, to and subject.

The email is not being sent. Here is the debug output (without my e-mail Adress):

Data Array

Array
(
[option] => com_chronoforms5
[chronoform] => Test
[event] => submit
[Itemid] =>
[checkbox1] => 1
[text3] => //My E-Mail Adress
[button4] => Submit
)

Array
(
)
Errors

Array
(
)

Debug Info

Array
(
)


What do I have to do?

Greetings & Thanks
Martin
GreyHead 20 Jan, 2014
Hi SeniorDingDong,

There's no sign of an email in the Debug output - have you Enabled the Email action?

Bob
SeniorDingDong 20 Jan, 2014
Hey,

thanks for the quick reply.

According to the "Edit action settings" of the E-Mail Action I did enable it.
Is there anything else I have to enable?

Thanks,
Martin
Max_admin 20 Jan, 2014
Hi Martin,

What's the order of the actions ? are you sure that the debug action is at the end of the list in the "on submit" ?

Regards,
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
SeniorDingDong 21 Jan, 2014
Answer
Hey Max,

you found my first mistake. Thanks. I moved the debugger to the end of the list. Data Array and Error stays the same.
Array
(
[0] => Array
(
[Email] => Array
(
[0] => An email with the details below was sent successfully:
[1] => To: myUSername@myurl.de
[2] => Subject:aasdasd
[3] => From name:Martin
[4] => From email:myusername@myUrl.de
[5] => Reply name:
[6] => Reply email:
[7] => Attachments:
[8] => Body:
<p>rwaasdasdadadsasd</p>
<p> </p>
)

)

)

Can you find another mistake? Thanks for the Help.
GreyHead 21 Jan, 2014
Hi SeniorDingDong,

Please make sure that the To and From Email addresses are different. Please see this FAQ which has some other suggestions.

Bob
SeniorDingDong 01 Feb, 2014
Hey,

it took me a while but you were right. Joomla was not able to send emails. I am sorry to have bothered you. Thanks for your help.

I now have another Problem. I saved the form, created a table, connected the table to the form, tested it and am now able to view the records. They are stored perfectly.

My problem is, that I get a page with no content when I click on "backup records". I can not save the records using chronoform. Can you help me again?

Thanks
Martin
GreyHead 01 Feb, 2014
Hi Martin,

Where or what is the 'BackUp Records' button/link you are clicking on?

Bob
SeniorDingDong 01 Feb, 2014
In Data Listing. After I clicked on the Table unter "Coinnected Tables" in the Form Manager.
Max_admin 01 Feb, 2014
unfortunately this is a bug, and will need a code fix, you can do it yourself until we have the new version ready, in this file:
/administrator/components/com_chronoforms5/chronoforms/chronoforms.php

Change line 560:
$form->actions_config[0] = array('tablename' => $this->data['table']);

To
$form->actions_config[0] = array('tablename' => $this->data['table'], 'enabled' => 1);


Regards,
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
BigStef 09 Feb, 2014
Tks for this little tips. I had this problems to export connected tables too ... :-)
This topic is locked and no more replies can be posted.