Page 1 of 1
Αποστολή eimail από τον admin panel και error
Posted: Tue Feb 05, 2013 9:49 am
by themis85_GR
Καλησπέρα σας. Θέλω να στείλω email στους πελάτες και πέρνω αυτό το μύνημα ενώ όλα είναι συπληρωμένα.
Πωλήσεις->Αποστολή email
Απαιτείται το μήνυμα του email!
Τι φταίει? Ευχαριστώ
Re: Αποστολή eimail από τον admin panel και error
Posted: Tue Feb 05, 2013 11:03 pm
by themis85_GR
Δεν. Εχεις κανεις αλλος το ιδιο προβλημα?
Re: Αποστολή eimail από τον admin panel και error
Posted: Wed Feb 06, 2013 7:30 am
by People's Code
Τι version έχεις και τι τρόπο αποστολής email χρησιμοποιείς (mail/smtp)
Re: Αποστολή eimail από τον admin panel και error
Posted: Wed Apr 03, 2013 5:27 pm
by themis85_GR
Έχω αρχίσει να τρελαίνομαι δεν μπορώ με τίποτα να στείλω μαιλ βγάζει αυτό.
Να πω ότι παίρνω κανονικά μηνύματα από το μαγαζί για νέους πελάτες παραγγελίες
Τι μπορεί να φταίει?
Re: Αποστολή eimail από τον admin panel και error
Posted: Wed Apr 03, 2013 5:45 pm
by themis85_GR
Ο επιμένων νικά στο τέλος βρήκα μετά από πολύ καιρό την λύση τώρα
Το πρόβλημα υπάρχει στην έκδοση 1.5.5.1 την οποί και χρησιμοποιώ.
Λύση
Re: Error: E-Mail Message required!
Unread postby byocode » Tue Feb 12, 2013 7:31 pm
Hi,
The Opencart guys have put this fix in the latest GIT respository.
The issue is that the text from the Message editor pane is not being properly copied to the message variable in the browser (inside the javascript "send(url)" function in the contact.tpl file) before it is being sent to the server, so the server thinks the user did not enter anything in the editor pan.
You can try this:
1. Open file "contact.tpl" in the "admin\view\template\sale" folder
2. Go to line 244, you'll see the line:
Code: Select all
$('textarea[name=\'message\']').html($('textarea[name=\'message\']').val());
and replace with:
Code: Select all
$('textarea[name=\'message\']').html(CKEDITOR.instances.message.getData());
3. Save the file and test.
This will copy the data entered in the message edit panel and will send it to the server.
Τώρα στέλνει κανονικά ευχαριστώ