Code: Select all
$sender = new Swift_Address($email, $name);
// Create the message to send
$message = new Swift_Message($subject);And the same question with $subject...
Thanks.
Moderators: Chris Corbyn, General Moderators
Code: Select all
$sender = new Swift_Address($email, $name);
// Create the message to send
$message = new Swift_Message($subject);That's pretty much why I asked, the problem is that now I'm even more confusedd11wtq wrote:There's already a bug been posted about $subject being broken if it's too long. I'm fixing that - it's a trivial, minor bug.
So in my contact form, do I need to put any limitations on the length (or any other limitations) of the name/subject fields?d11wtq wrote:When it arrives at the mail client it should look like what you typed
Code: Select all
$ret .= wordwrap($data, $chunk-2, $le, true);
//to
$ret .= wordwrap($data, $chunk-2, $le);I make releases roughly once every week. I'd make new releases every day or two but people start to get annoyed with me when I do thatOren wrote:Ok, thanks. When are you going to make the next release? This is not urgent so I can wait just in case you'll make more changes...