When I would send a Newsletter, an I make None HTML Message than comes an Form Error. If i make none text message everything is ok but the mail comes with the html code why is that so and how could i delete this problem
Sorry my English is not very good but I hope you understand
NMS
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: NMS
You were on the IRC channel but left about 5 minutes too early.
I just tested NMS and it worked fine.
However, when creating a message NMS's default template is for an HTML message if you want a text message you need to delete all of the html formatting stuff.
I just tested NMS and it worked fine.
However, when creating a message NMS's default template is for an HTML message if you want a text message you need to delete all of the html formatting stuff.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: NMS
If I delete all HTML and I write a Text mail i get a form failure see the screenie, if i make none text message the message get out but it cames in HTML back to the user
Edit: Example for the Mail that comes with none text message hallo
das ist eine Test Mail
Hoffe das funzt auf diesem wege
that arrives then. But I want normal text and see the screen what I get.
Edit: Example for the Mail that comes with none text message hallo
das ist eine Test Mail
Hoffe das funzt auf diesem wege
that arrives then. But I want normal text and see the screen what I get.
Last edited by stone on Wed Oct 17, 2007 7:08 pm, edited 1 time in total.
Re: NMS
You're using the TINYMCE-Editor, it produces these tags (
etc. ) automatically.
While Editing turn WYSIWYG off -- or switch to Source-Code-Mode (button named 'HTML') and enter your text.
This will work. For sure.
etc. ) automatically.
While Editing turn WYSIWYG off -- or switch to Source-Code-Mode (button named 'HTML') and enter your text.
This will work. For sure.

Last edited by babulski on Wed Oct 17, 2007 8:14 pm, edited 1 time in total.
Re: NMS
open the NMS.module.php
find
function DisplayCompose($id, &$params, $returnid)
on line 1184 there's the line
change it to
I have not tested this as I am not using this module. It's pretty buggy to me and it doesn't allow the choice to use Html OR text for the user, so I switched to MailChimp. CMS is good for its core and for some of the more popular modules, but this module always gave me problems (just my opininon).
find
function DisplayCompose($id, &$params, $returnid)
on line 1184 there's the line
Code: Select all
$message_text = $this->GetPreference('default_message_template','');
Code: Select all
$message_text = $this->GetPreference('','');
-
- Forum Members
- Posts: 12
- Joined: Tue Nov 06, 2007 10:21 pm
Re: NMS
I am new to CMSMS but everyday it continues to impress me. This Forum has become a favorite stomping ground to browse on my iPhone when I have some down time, and of course when I am working on a site and get stumped. I installed the NMS 1.0.1 on CMSMS 1.2 (NMS 1.0.2 produced an XML parsing error when I tried installing it) this morning and I explored it a bit. I love it's straightforward management interface.
I noticed the same problem described by the Stone/original poster in this thread. The replies provide advice on getting a text formatted message to successfully email out, but what about an HTML message. This is default and this is what I would like to use, but I got an error message when trying to test it. That's when I tried the text message and noticed the same problem as Stone. However, what I really want is to figure out how to make HTML message sending work.
Carasmo, does your modification to the php file rectify this as well? I'm not clear on what your code mod does.
Thanks.
I noticed the same problem described by the Stone/original poster in this thread. The replies provide advice on getting a text formatted message to successfully email out, but what about an HTML message. This is default and this is what I would like to use, but I got an error message when trying to test it. That's when I tried the text message and noticed the same problem as Stone. However, what I really want is to figure out how to make HTML message sending work.
Carasmo, does your modification to the php file rectify this as well? I'm not clear on what your code mod does.
Thanks.
-
- Forum Members
- Posts: 12
- Joined: Tue Nov 06, 2007 10:21 pm
Re: NMS
Okay, I figured out that NMS doesn't come with a layout template for the HTML message, so one has to go to the Layout > Templates section of the CMS Admin and create/copy a template for use with the newsletter. In that template, one must replace {content} with {$message_text} and adjust the layout in whatever way one wishes to position & render elements.
I did not see this in the NMS Help screen, although the info can be gleaned from perusing forum posts.
I did not see this in the NMS Help screen, although the info can be gleaned from perusing forum posts.