Changeset 6084
- Timestamp:
- 06/01/06 11:08:23 (2 years ago)
- Files:
-
- wp-email/trunk/email/class-phpmailer.php (modified) (6 diffs)
- wp-email/trunk/email/email-options.php (modified) (1 diff)
- wp-email/trunk/email/email.php (modified) (1 diff)
- wp-email/trunk/email/wp-email-popup.php (modified) (1 diff)
- wp-email/trunk/email/wp-email.php (modified) (1 diff)
- wp-email/trunk/readme.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email/class-phpmailer.php
r5976 r6084 104 104 105 105 /** 106 * Method to send mail: (" mail", "sendmail", or "smtp").106 * Method to send mail: ("php", "sendmail", or "smtp"). 107 107 * @var string 108 108 */ 109 var $Mailer = " mail";109 var $Mailer = "php"; 110 110 111 111 /** … … 253 253 */ 254 254 function IsMail() { 255 $this->Mailer = " mail";255 $this->Mailer = "php"; 256 256 } 257 257 … … 770 770 771 771 // To be created automatically by mail() 772 if($this->Mailer != " mail")772 if($this->Mailer != "php") 773 773 { 774 774 if(count($this->to) > 0) … … 786 786 787 787 // sendmail and mail() extract Bcc from the header before sending 788 if((($this->Mailer == "sendmail") || ($this->Mailer == " mail")) && (count($this->bcc) > 0))788 if((($this->Mailer == "sendmail") || ($this->Mailer == "php")) && (count($this->bcc) > 0)) 789 789 $result .= $this->AddrAppend("Bcc", $this->bcc); 790 790 … … 793 793 794 794 // mail() sets the subject itself 795 if($this->Mailer != " mail")795 if($this->Mailer != "php") 796 796 $result .= $this->HeaderLine("Subject", $this->EncodeHeader(trim($this->Subject))); 797 797 … … 842 842 } 843 843 844 if($this->Mailer != " mail")844 if($this->Mailer != "php") 845 845 $result .= $this->LE.$this->LE; 846 846 wp-email/trunk/email/email-options.php
r6073 r6084 174 174 </tr> 175 175 <tr valign="top"> 176 <th align="left" width="30%"><?php _e('Max Number Of Multiple E-Mails:'); ?></th> 177 <td align="left"><input type="text" id="email_multiple" name="email_multiple" value="<?php echo get_settings('email_multiple'); ?>" size="5" maxlength="3"><br />Setting this value more than 1 will enable this feature. It allows the maximum number of multiple e-mails that can be send at one go.</td> 178 </tr> 179 <tr valign="top"> 176 180 <th align="left" width="30%"><?php _e('Enable Image Verification:'); ?></th> 177 181 <td align="left"> wp-email/trunk/email/email.php
r6073 r6084 198 198 ### Function: E-Mail Alternate Content 199 199 function email_content_alt() { 200 remove_filter('the_content', 'wptexturize'); 200 201 $content = get_email_content(); 201 202 $content = clean_pre($content); wp-email/trunk/email/wp-email-popup.php
r6073 r6084 259 259 $email_yourremarks = addslashes($yourremarks); 260 260 $email_postid = email_id(); 261 $email_posttitle = addslashes( email_title());261 $email_posttitle = addslashes($post_title); 262 262 $email_timestamp = current_time('timestamp'); 263 263 $email_ip = get_email_ipaddress(); wp-email/trunk/email/wp-email.php
r6073 r6084 247 247 $email_yourremarks = addslashes($yourremarks); 248 248 $email_postid = email_id(); 249 $email_posttitle = addslashes( email_title());249 $email_posttitle = addslashes($post_title); 250 250 $email_timestamp = current_time('timestamp'); 251 251 $email_ip = get_email_ipaddress(); wp-email/trunk/readme.html
r6074 r6084 221 221 <li>NEW: Added <label> Tag For Form Fields</li> 222 222 <li>FIXED: Remarks Column Removed From E-Mail Logs Due To Privacy Issue</li> 223 <li>FIXED: Duplicate Subject/Name When Sent Using PHP</li> 223 224 <li>FIXED: Quotes Not Displaying When Sending In Plain Text</li> 224 225 </ul>
