How to avoid additional line breaks

I am sending text emails. They all arrive with line breaks mid-sentence to enforce some kind of maximum width. How can I avoid having PHPLIST add these line breaks?

@lybrary There is a setting Width for Wordwrap of Text messages on the Settings page, which seems to have a default value of 75. Does that match what you are seeing?

phplist used the phpmailer package to construct and send email so phpmailer will probably be doing its own formatting to conform to standards. Also, sending by SMTP may have a different result to sending using the php mail function, so you might want to try each to see if the results differ.

Can I set this to 0 to not have a width at all? Or do I have to make this some very large number?

@lybrary Setting it to 0 doesn’t seem to have any effect, but you can try a value that is greater than the length of any paragraph in the text.

Thanks, setting it to a high value fixed the issue.