[ Index ]
 

Code source de CMS made simple 1.0.5

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/modules/CMSMailer/lang/ -> en_US.php (source)

   1  <?php
   2  $lang['sendtestmailconfirm'] = 'This will send a test message to the address specified. If the send process suceeded, you will be returned to this page.  Do you want to continue?';
   3  $lang['settingsconfirm'] = 'Write current values to CMSMailer settings?';
   4  $lang['testsubject'] = 'CMSMailer Test Message';
   5  $lang['testbody'] = 'This message is intended only to verify the validity of the settings in the CMSMailer module.
   6  If you received it, everything is working fine.';
   7  $lang['error_notestaddress'] = 'Error: Test address not specified';
   8  $lang['prompt_testaddress'] = 'Test Email Address';
   9  $lang['sendtest'] = 'Send Test Message';
  10  $lang['password'] = 'Password';
  11  $lang['username'] = 'Username';
  12  $lang['smtpauth'] = 'SMTP Authentication';
  13  $lang['mailer']   = 'Mailer method';
  14  $lang['host']     = 'SMTP host name<br/><i>(or IP address)</i>';
  15  $lang['port']     = 'Port of SMTP server';
  16  $lang['from']     = 'From address';
  17  $lang['fromuser'] = 'From Username';
  18  $lang['sendmail'] = 'Sendmail location';
  19  $lang['timeout']  = 'SMTP timeout';
  20  $lang['submit']   = 'Submit';
  21  $lang['cancel']   = 'Cancel';
  22  $lang['info_mailer'] = 'Mail method to use (sendmail, smtp, mail).  Usually smtp is the most reliable.';
  23  $lang['info_host'] = 'SMTP hostname (only valid for the smtp mailer method)';
  24  $lang['info_port'] = 'SMTP port number (usually 25) (only valid for the smtp mailer method)';
  25  $lang['info_from'] = 'Address used as the sender in all emails';
  26  $lang['info_fromuser'] = 'Friendly name used for sending all emails';
  27  $lang['info_sendmail'] = 'The complete path to your sendmail executable (only valid for the sendmail mailer method)';
  28  $lang['info_timeout'] = 'The number of seconds in an SMTP conversation before an error occurs (valid for the smtp mailer method)';
  29  $lang['info_smtpauth'] = 'Does your smtp host require authentication (valid only for the smtp mailer method)';
  30  $lang['info_username'] = 'SMTP authentication username (valid only for smtp mailer method, when smtp auth is selected)';
  31  $lang['info_password'] = 'SMTP authentication password (valid only for smtp mailer method, when smtp auth is selected)';
  32  $lang['friendlyname'] = 'CMSMailer Module';
  33  $lang['postinstall'] = 'CMSMailer module has been successfully installed';
  34  $lang['postuninstall'] = 'CMSMailer module uninstalled... sorry to see you leave';
  35  $lang['uninstalled'] = 'Module Uninstalled.';
  36  $lang['installed'] = 'Module version %s installed.';
  37  $lang['accessdenied'] = 'Access Denied. Please check your permissions.';
  38  $lang['error'] = 'Error!';
  39  $lang['upgraded'] = 'Module upgraded to version %s.';
  40  $lang['title_mod_prefs'] = 'Module Preferences';
  41  $lang['title_mod_admin'] = 'Module Admin Panel';
  42  $lang['title_admin_panel'] = 'CMSMailer Module';
  43  $lang['moddescription'] = 'This is a simple wrapper around PHPMailer, it has an equivalent API (function for function) and a simple interface for some defaults.';
  44  $lang['welcome_text'] = '<p>Welcome to the CMSMailer module admin section';
  45  $lang['changelog'] = '
  46  <ul>
  47  <li>Version 1.73.1. October, 2005. Initial Release.</li>
  48  <li>Version 1.73.2. October, 2005. Minor bug fix with the admin panel.  The dropdown was not representing the current value from the preferences database</li>
  49  <li>Version 1.73.3. October, 2005. Minor bug fix with sending html email</li>
  50  <li>Version 1.73.4. November, 2005. Form fields in preferences are larger, fixed a problem with the fromuser, and called reset within the constructor</li>
  51  <li>Version 1.73.5. November, 2005. Added the form fields and functionality for SMTP authentication.</li>
  52  <li>Version 1.73.6. December, 2005. Default mailer method is SMTP on install, and improved documentation, and now I clear all the attachments, and addresses, etc. on reset.</li>
  53  <li>Version 1.73.7. January, 2006. Increased field lengths in most fields</li>
  54  <li>Version 1.73.8. January, 2006. Changed the preferences panel to be a bit more descriptive.</li>
  55  <li>Version 1.73.9. January, 2006. Added test email capability, and confirmation on each button (except cancel)</li>
  56  <li>Version 1.73.10. August, 2006. Modified to use lazy loading to minimize memory footprint when CMSMailer is not being used.</li>
  57  </ul>';
  58  $lang['help'] = '<h3>What Does This Do?</h3>
  59  <p>This module provides no end user functionality.  It is designed to be integrated into other modules to provide email capabilities.  Thats it, nothing more.</p>
  60  <h3>How Do I Use It</h3>
  61  <p>This module provides a simple wrapper around all of the methods and variables of phpmailer.  It is designed for use by other module developers, below is an example, and a brief API reference.  Please read the PHPMailer documentation included for more information.</p>
  62  <h3>An Example</h3>
  63  <pre>
  64    $cmsmailer = $this->GetModuleInstance(\'CMSMailer\');
  65    $cmsmailer->AddAddress(\'calguy1000@hotmail.com\',\'calguy\');
  66    $cmsmailer->SetBody(\'&lt;h4&gt;This is a test message&lt;/h4&gt;\');
  67    $cmsmailer->IsHTML(true);
  68    $cmsmailer->SetSubject(\'Test message\');
  69    $cmsmailer->Send();
  70  </pre>
  71  <h3>API</h3>
  72  <ul>
  73  <li><p><b>void reset()</b></p>
  74  <p>Reset the object back to the values specified in the admin panel</p>
  75  </li>
  76  <li><p><b>string GetAltBody()</b></p>
  77  <p>Return the alternate body of the email</p>
  78  </li>
  79  <li><p><b>void SetAltBody( $string )</b></p>
  80  <p>Set the alternate body of the email</p>
  81  </li>
  82  <li><p><b>string GetBody()</b></p>
  83  <p>Return the primary body of the email</p>
  84  </li>
  85  <li><p><b>void SetBody( $string )</b></p>
  86  <p>Set the primary body of the email</p>
  87  </li>
  88  <li><p><b>string GetCharSet()</b></p>
  89  <p>Default: iso-8859-1</p>
  90  <p>Return the mailer character set</p>
  91  </li>
  92  <li><p><b>void SetCharSet( $string )</b></p>
  93  <p>Set the mailer character set</p>
  94  </li>
  95  <li><p><b>string GetConfirmReadingTo()</b></p>
  96  <p>Return the address confirmed reading email flag</p>
  97  </li>
  98  <li><p><b>void SetConfirmReadingTo( $address )</b></p>
  99  <p>Set or unset the confirm reading address</p>
 100  </li>
 101  <li><p><b>string GetContentType()</b></p>
 102  <p>Default: text/plain</p>
 103  <p>Return the content type</p>
 104  </li>
 105  <li><p><b>void SetContentType()</b></p>
 106  <p>Set the content type</p>
 107  </li>
 108  <li><p><b>string GetEncoding()</b></p>
 109  <p>Return the encoding</p>
 110  </li>
 111  <li><p><b>void SetEncoding( $encoding )</b></p>
 112  <p>Set the encoding</p>
 113  <p>Options are: 8bit, 7bit, binary, base64, quoted-printable</p>
 114  </li>
 115  <li><p><b>string GetErrorInfo()</b></p>
 116  <p>Return any error information</p>
 117  </li>
 118  <li><p><b>string GetFrom()</b></p>
 119  <p>Return the current originating address</p>
 120  </li>
 121  <li><p><b>void SetFrom( $address )</b></p>
 122  <p>Set the originating address</p>
 123  </li>
 124  <li><p><b>string GetFromName()</b></p>
 125  <p>Return the current originating name</p>
 126  </li>
 127  <li><p><b>SetFromName( $name )</b></p>
 128  <p>Set the originating name</p>
 129  </li>
 130  <li><p><b>string GetHelo()</b></p>
 131  <p>Return the HELO string</p>
 132  </li>
 133  <li><p><b>SetHelo( $string )</b></p>
 134  <p>Set the HELO string</p>
 135  <p>Default value: $hostname</p>
 136  </li>
 137  <li><p><b>string GetHost()</b></p>
 138  <p>Return the SMTPs host separated by semicolon</p>
 139  </li>
 140  <li><p><b>void SetHost( $string )</b></p>
 141  <p>Set the hosts</p>
 142  </li>
 143  <li><p><b>string GetHostName()</b></p>
 144  <p>Return the hostname used for SMTP Helo</p>
 145  </li>
 146  <li><p><b>void SetHostName( $hostname )</b></p>
 147  <p>Set the hostname used for SMTP Helo</p>
 148  </li>
 149  <li><p><b>string GetMailer()</b></p>
 150  <p>Return the mailer</p>
 151  </li>
 152  <li><p><b>void SetMailer( $mailer )</b></p>
 153  <p>Set the mailer, either sendmail,mail, or smtp</p>
 154  </li>
 155  <li><p><b>string GetPassword()</b></p>
 156  <p>Return the password for smtp auth</p>
 157  </li>
 158  <li><p><b>void SetPassword( $string )</b></p>
 159  <p>Set the password for smtp auth</p>
 160  </li>
 161  <li><p><b>int GetPort()</b></p>
 162  <p>Return the port number for smtp connections</p>
 163  </li>
 164  <li><p><b>void SetPort( $int )</b></p>
 165  <p>Set the port for smtp connections</p>
 166  </li>
 167  <li><p><b>int GetPriority()</b></p>
 168  <p>Return the message priority</p>
 169  </li>
 170  <li><p><b>void SetPriority( int )</b></p>
 171  <p>Set the message priority</p>
 172  <p>Values are 1=High, 3 = Normal, 5 = Low</p>
 173  </li>
 174  <li><p><b>string GetSender()</b></p>
 175  <p>Return the sender email (return path) string</p>
 176  </li>
 177  <li><p><b>void SetSender( $address )</b></p>
 178  <p>Set the sender string</p>
 179  </li>
 180  <li><p><b>string GetSendmail()</b></p>
 181  <p>Return the sendmail path</p>
 182  </li>
 183  <li><p><b>void SetSendmail( $path )</b></p>
 184  <p>Set the sendmail path</p>
 185  </li>
 186  <li><p><b>bool GetSMTPAuth()</b></p>
 187  <p>Return the current value of the smtp auth flag</p>
 188  </li>
 189  <li><p><b>SetSMTPAuth( $bool )</b></p>
 190  <p>Set the smtp auth flag</p>
 191  </li>
 192  <li><p><b>bool GetSMTPDebug()</b></p>
 193  <p>Return the value of the SMTP debug flag</p>
 194  </li>
 195  <li><p><b>void SetSMTPDebug( $bool )</b></p>
 196  <p>Set the SMTP debug flag</p>
 197  </li>
 198  <li><p><b>bool GetSMTPKeepAlive()</b></p>
 199  <p>Return the value of the SMTP keep alive flag</p>
 200  </li>
 201  <li><p><b>SetSMTPKeepAlive( $bool )</b></p>
 202  <p>Set the SMTP keep alive flag</p>
 203  </li>
 204  <li><p><b>string GetSubject()</b></p>
 205  <p>Return the current subject string</p>
 206  </li>
 207  <li><p><b>void SetSubject( $string )</b></p>
 208  <p>Set the subject string</p>
 209  </li>
 210  <li><p><b>int GetTimeout()</b></p>
 211  <p>Return the timeout value</p>
 212  </li>
 213  <li><p><b>void SetTimeout( $seconds )</b></p>
 214  <p>Set the timeout value</p>
 215  </li>
 216  <li><p><b>string GetUsername()</b></p>
 217  <p>Return the smtp auth username</p>
 218  </li>
 219  <li><p><b>void SetUsername( $string )</b></p>
 220  <p>Set the smtp auth username</p>
 221  </li>
 222  <li><p><b>int GetWordWrap()</b></p>
 223  <p>Return the wordwrap value</p>
 224  </li>
 225  <li><p><b>void SetWordWrap( $int )</b></p>
 226  <p>Return the wordwrap value</p>
 227  </li>
 228  <li><p><b>AddAddress( $address, $name = \'\' )</b></p>
 229  <p>Add a destination address</p>
 230  </li>
 231  <li><p><b>AddAttachment( $path, $name = \'\', $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
 232  <p>Add a file attachment</p>
 233  </li>
 234  <li><p><b>AddBCC( $address, $name = \'\' )</b></p>
 235  <p>Add a BCC\'d destination address</p>
 236  </li>
 237  <li><p><b>AddCC( $address, $name = \'\' )</b></p>
 238  <p>Add a CC\'d destination address</p>
 239  </li>
 240  <li><p><b>AddCustomHeader( $txt )</b></p>
 241  <p>Add a custom header to the email</p>
 242  </li>
 243  <li><p><b>AddEmbeddedImage( $path, $cid, $name = \'\', $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
 244  <p>Add an embedded image</p>
 245  </li>
 246  <li><p><b>AddReplyTo( $address, $name = \'\' )</b></p>
 247  <p>Add a reply to address</p>
 248  </li>
 249  <li><p><b>AddStringAttachment( $string, $filename, $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
 250  <p>Add a file attachment</p>
 251  </li>
 252  <li><p><b>ClearAddresses()</b></p>
 253  <p>Clear all addresses</p>
 254  </li>
 255  <li><p><b>ClearAllRecipients()</b></p>
 256  <p>Clear all recipients</p>
 257  </li>
 258  <li><p><b>ClearAttachments()</b></p>
 259  <p>Clear all attachments</p>
 260  </li>
 261  <li><p><b>ClearBCCs()</b></p>
 262  <p>Clear all BCC addresses</p>
 263  </li>
 264  <li><p><b>ClearCCs()</b></p>
 265  <p>Clear all CC addresses</p>
 266  </li>
 267  <li><p><b>ClearCustomHeaders()</b></p>
 268  <p>Clear all custom headers</p>
 269  </li>
 270  <li><p><b>ClearReplyto()</b></p>
 271  <p>Clear reply to address</p>
 272  </li>
 273  <li><p><b>IsError()</b></p>
 274  <p>Check for an error condition</p>
 275  </li>
 276  <li><p><b>bool IsHTML( $bool )</b></p>
 277  <p>Set the html flag</p>
 278  <p><i>Note</i> possibly this should be a get and set method</p>
 279  </li>
 280  <li><p><b>bool IsMail()</b></p>
 281  <p>Check wether we are using mail</p>
 282  </li>
 283  <li><p><b>bool IsQmail()</b></p>
 284  <p>Check wether we are using qmail</p>
 285  </li>
 286  <li><p><b>IsSendmail()</b></p>
 287  <p>Check wether we are using sendmail</p>
 288  </li>
 289  <li><p><b>IsSMTP()</b></p>
 290  <p>Check wether we are using smtp</p>
 291  </li>
 292  <li><p><b>Send()</b></p>
 293  <p>Send the currently prepared email</p>
 294  </li>
 295  <li><p><b>SetLanguage( $lang_type, $lang_path = \'\' )</b></p>
 296  <p>Set the current language and <em>(optional)</em> language path</p>
 297  </li>
 298  <li><p><b>SmtpClose()</b></p>
 299  <p>Close the smtp connection</p>
 300  </li>
 301  </ul>
 302  <h3>Support</h3>
 303  <p>This module does not include commercial support. However, there are a number of resources available to help you with it:</p>
 304  <ul>
 305  <li>For the latest version of this module, FAQs, or to file a Bug Report or buy commercial support, please visit calguys homepage at <a href=\'http://techcom.dyndns.org\'>techcom.dyndns.org</a>.</li>
 306  <li>Additional discussion of this module may also be found in the <a href=\'http://forum.cmsmadesimple.org\'>CMS Made Simple Forums</a>.</li>
 307  <li>The author, calguy1000, can often be found in the <a href=\'irc://irc.freenode.net/#cms\'>CMS IRC Channel</a>.</li>
 308  <li>Lastly, you may have some success emailing the author directly.</li>  
 309  </ul>
 310  <p>As per the GPL, this software is provided as-is. Please read the text
 311  of the license for the full disclaimer.</p>
 312  
 313  <h3>Copyright and License</h3>
 314  <p>Copyright &copy; 2005, Robert Campbell <a href=\'mailto:calguy1000@hotmail.com\'>&lt;calguy1000@hotmail.com&gt;</a>. All Rights Are Reserved.</p>
 315  <p>This module has been released under the <a href=\'http://www.gnu.org/licenses/licenses.html#GPL\'>GNU Public License</a>. You must agree to this license before using the module.</p>
 316  ';
 317  ?>


Généré le : Tue Apr 3 18:50:37 2007 par Balluche grâce à PHPXref 0.7