[ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 <?php 2 $lang['sendtestmailconfirm'] = 'Dit verstuurt een test bericht naar het opgegeven adres. Als het versturen succesvol verloopt komt u weer op deze pagina terecht. Wilt u doorgaan?'; 3 $lang['settingsconfirm'] = 'Huidige waarden wegschrijven naar de CMSMailer instellingen?'; 4 $lang['testsubject'] = 'CMSMailer Test Bericht'; 5 $lang['testbody'] = 'Dit bericht is alleen bedoeld om te kijken of de CMSMailer module goed is ingesteld. Als het ontvangen wordt werkt alles goed.'; 6 $lang['error_notestaddress'] = 'Fout: geen test adres opgegeven'; 7 $lang['prompt_testaddress'] = 'Test E-mail Adres'; 8 $lang['sendtest'] = 'Verstuur test bericht'; 9 $lang['password'] = 'Wachtwoord'; 10 $lang['username'] = 'Gebruikersnaam'; 11 $lang['smtpauth'] = 'SMTP Authenticatie'; 12 $lang['mailer'] = 'Mail methode'; 13 $lang['host'] = 'SMTP host name<br/><i>(of IP adres)</i>'; 14 $lang['port'] = 'SMTP server poortnummer'; 15 $lang['from'] = 'Van veld'; 16 $lang['fromuser'] = 'Van gebruikersnaam'; 17 $lang['sendmail'] = 'Locatie van sendmail'; 18 $lang['timeout'] = 'timeout SMTP '; 19 $lang['submit'] = 'Versturen'; 20 $lang['cancel'] = 'Annuleren'; 21 $lang['info_mailer'] = 'Mail methode om te gebruiken (sendmail, smtp, mail). Meestal is smtp het meest betrouwbaar.'; 22 $lang['info_host'] = 'SMTP hostname (alleen geldig voor de smtp mail methode)'; 23 $lang['info_port'] = 'SMTP poortnummer (meestal 25) (alleen geldig voor de smtp mail methode)'; 24 $lang['info_from'] = 'Adres dat gebruikt wordt als afzender in alle berichten'; 25 $lang['info_fromuser'] = '"Vriendelijke" naam die gebruikt wordt voor het versturen van alle berichten'; 26 $lang['info_sendmail'] = 'Het volledige pad naar de sendmail executable (alleen geldig voor de sendmail mail methode)'; 27 $lang['info_timeout'] = 'Het aantal seconden in een SMTP conversatie voordat een fout optreedt (geldig voor de smtp mailer methode)'; 28 $lang['info_smtpauth'] = 'Is voor de smtp server authenticatie nodig (alleen geldig voor de smtp mailer methode)'; 29 $lang['info_username'] = 'SMTP authenticatie gebruikersnaam (alleen geldig voor de smtp mailer methode, als smtp auth is geselecteerd)'; 30 $lang['info_password'] = 'SMTP authenticatie wachtwoord (alleen geldig voor de smtp mailer methode, als smtp auth is geselecteerd)'; 31 $lang['friendlyname'] = 'CMSMailer module'; 32 $lang['postinstall'] = 'CMSMailer module is met succes geïnstalleerd'; 33 $lang['postuninstall'] = 'CMSMailer module gedeinstalleerd'; 34 $lang['uninstalled'] = 'Module gedeinstalleerd.'; 35 $lang['installed'] = 'Module versie %s geïnstalleerd.'; 36 $lang['accessdenied'] = 'Toegang geweigerd. Zorg dat u beschikt over voldoende rechten.'; 37 $lang['error'] = 'Fout!'; 38 $lang['upgraded'] = 'Module bijgewerkt naar versie %s.'; 39 $lang['title_mod_prefs'] = 'Module voorkeuren'; 40 $lang['title_mod_admin'] = 'Module beheer paneel'; 41 $lang['title_admin_panel'] = 'CMSMailer module'; 42 $lang['moddescription'] = 'Dit is een simpele "wrapper" rond PHPMailer, het heeft een gelijke API (functie voor functie) en een simpele interface voor een aantal standaardwaarden.'; 43 $lang['welcome_text'] = '<p>Welkom bij de CMSMailer module beheer sectie'; 44 $lang['changelog'] = '<ul> 45 <li>Version 1.73.1. October, 2005. Initial Release.</li> 46 <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> 47 <li>Version 1.73.3. October, 2005. Minor bug fix with sending html email</li> 48 <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> 49 <li>Version 1.73.5. November, 2005. Added the form fields and functionality for SMTP authentication.</li> 50 <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> 51 <li>Version 1.73.7. January, 2006. Increased field lengths in most fields</li> 52 <li>Version 1.73.8. January, 2006. Changed the preferences panel to be a bit more descriptive.</li> 53 <li>Version 1.73.9. January, 2006. Added test email capability, and confirmation on each button (except cancel)</li> 54 </ul>'; 55 $lang['help'] = '<h3>What Does This Do?</h3> 56 <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> 57 <h3>How Do I Use It</h3> 58 <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> 59 <h3>An Example</h3> 60 <pre> 61 $cmsmailer = $this->GetModuleInstance('CMSMailer'); 62 $cmsmailer->AddAddress('calguy1000@hotmail.com','calguy'); 63 $cmsmailer->SetBody('<h1>This is a test message<h1>'); 64 $cmsmailer->IsHTML(true); 65 $cmsmailer->SetSubject('Test message'); 66 $cmsmailer->Send(); 67 </pre> 68 <h3>API</h3> 69 <ul> 70 <li><p><b>void reset()</b></p> 71 <p>Reset the object back to the values specified in the admin panel</p> 72 </li> 73 <li><p><b>string GetAltBody()</b></p> 74 <p>Return the alternate body of the email</p> 75 </li> 76 <li><p><b>void SetAltBody( $string )</b></p> 77 <p>Set the alternate body of the email</p> 78 </li> 79 <li><p><b>string GetBody()</b></p> 80 <p>Return the primary body of the email</p> 81 </li> 82 <li><p><b>void SetBody( $string )</b></p> 83 <p>Set the primary body of the email</p> 84 </li> 85 <li><p><b>string GetCharSet()</b></p> 86 <p>Default: iso-8859-1</p> 87 <p>Return the mailer character set</p> 88 </li> 89 <li><p><b>void SetCharSet( $string )</b></p> 90 <p>Set the mailer character set</p> 91 </li> 92 <li><p><b>string GetConfirmReadingTo()</b></p> 93 <p>Return the address confirmed reading email flag</p> 94 </li> 95 <li><p><b>void SetConfirmReadingTo( $address )</b></p> 96 <p>Set or unset the confirm reading address</p> 97 </li> 98 <li><p><b>string GetContentType()</b></p> 99 <p>Default: text/plain</p> 100 <p>Return the content type</p> 101 </li> 102 <li><p><b>void SetContentType()</b></p> 103 <p>Set the content type</p> 104 </li> 105 <li><p><b>string GetEncoding()</b></p> 106 <p>Return the encoding</p> 107 </li> 108 <li><p><b>void SetEncoding( $encoding )</b></p> 109 <p>Set the encoding</p> 110 <p>Options are: 8bit, 7bit, binary, base64, quoted-printable</p> 111 </li> 112 <li><p><b>string GetErrorInfo()</b></p> 113 <p>Return any error information</p> 114 </li> 115 <li><p><b>string GetFrom()</b></p> 116 <p>Return the current originating address</p> 117 </li> 118 <li><p><b>void SetFrom( $address )</b></p> 119 <p>Set the originating address</p> 120 </li> 121 <li><p><b>string GetFromName()</b></p> 122 <p>Return the current originating name</p> 123 </li> 124 <li><p><b>SetFromName( $name )</b></p> 125 <p>Set the originating name</p> 126 </li> 127 <li><p><b>string GetHelo()</b></p> 128 <p>Return the HELO string</p> 129 </li> 130 <li><p><b>SetHelo( $string )</b></p> 131 <p>Set the HELO string</p> 132 <p>Default value: $hostname</p> 133 </li> 134 <li><p><b>string GetHost()</b></p> 135 <p>Return the SMTPs host separated by semicolon</p> 136 </li> 137 <li><p><b>void SetHost( $string )</b></p> 138 <p>Set the hosts</p> 139 </li> 140 <li><p><b>string GetHostName()</b></p> 141 <p>Return the hostname used for SMTP Helo</p> 142 </li> 143 <li><p><b>void SetHostName( $hostname )</b></p> 144 <p>Set the hostname used for SMTP Helo</p> 145 </li> 146 <li><p><b>string GetMailer()</b></p> 147 <p>Return the mailer</p> 148 </li> 149 <li><p><b>void SetMailer( $mailer )</b></p> 150 <p>Set the mailer, either sendmail,mail, or smtp</p> 151 </li> 152 <li><p><b>string GetPassword()</b></p> 153 <p>Return the password for smtp auth</p> 154 </li> 155 <li><p><b>void SetPassword( $string )</b></p> 156 <p>Set the password for smtp auth</p> 157 </li> 158 <li><p><b>int GetPort()</b></p> 159 <p>Return the port number for smtp connections</p> 160 </li> 161 <li><p><b>void SetPort( $int )</b></p> 162 <p>Set the port for smtp connections</p> 163 </li> 164 <li><p><b>int GetPriority()</b></p> 165 <p>Return the message priority</p> 166 </li> 167 <li><p><b>void SetPriority( int )</b></p> 168 <p>Set the message priority</p> 169 <p>Values are 1=High, 3 = Normal, 5 = Low</p> 170 </li> 171 <li><p><b>string GetSender()</b></p> 172 <p>Return the sender email (return path) string</p> 173 </li> 174 <li><p><b>void SetSender( $address )</b></p> 175 <p>Set the sender string</p> 176 </li> 177 <li><p><b>string GetSendmail()</b></p> 178 <p>Return the sendmail path</p> 179 </li> 180 <li><p><b>void SetSendmail( $path )</b></p> 181 <p>Set the sendmail path</p> 182 </li> 183 <li><p><b>bool GetSMTPAuth()</b></p> 184 <p>Return the current value of the smtp auth flag</p> 185 </li> 186 <li><p><b>SetSMTPAuth( $bool )</b></p> 187 <p>Set the smtp auth flag</p> 188 </li> 189 <li><p><b>bool GetSMTPDebug()</b></p> 190 <p>Return the value of the SMTP debug flag</p> 191 </li> 192 <li><p><b>void SetSMTPDebug( $bool )</b></p> 193 <p>Set the SMTP debug flag</p> 194 </li> 195 <li><p><b>bool GetSMTPKeepAlive()</b></p> 196 <p>Return the value of the SMTP keep alive flag</p> 197 </li> 198 <li><p><b>SetSMTPKeepAlive( $bool )</b></p> 199 <p>Set the SMTP keep alive flag</p> 200 </li> 201 <li><p><b>string GetSubject()</b></p> 202 <p>Return the current subject string</p> 203 </li> 204 <li><p><b>void SetSubject( $string )</b></p> 205 <p>Set the subject string</p> 206 </li> 207 <li><p><b>int GetTimeout()</b></p> 208 <p>Return the timeout value</p> 209 </li> 210 <li><p><b>void SetTimeout( $seconds )</b></p> 211 <p>Set the timeout value</p> 212 </li> 213 <li><p><b>string GetUsername()</b></p> 214 <p>Return the smtp auth username</p> 215 </li> 216 <li><p><b>void SetUsername( $string )</b></p> 217 <p>Set the smtp auth username</p> 218 </li> 219 <li><p><b>int GetWordWrap()</b></p> 220 <p>Return the wordwrap value</p> 221 </li> 222 <li><p><b>void SetWordWrap( $int )</b></p> 223 <p>Return the wordwrap value</p> 224 </li> 225 <li><p><b>AddAddress( $address, $name = '' )</b></p> 226 <p>Add a destination address</p> 227 </li> 228 <li><p><b>AddAttachment( $path, $name = '', $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 229 <p>Add a file attachment</p> 230 </li> 231 <li><p><b>AddBCC( $address, $name = '' )</b></p> 232 <p>Add a BCC'd destination address</p> 233 </li> 234 <li><p><b>AddCC( $address, $name = '' )</b></p> 235 <p>Add a CC'd destination address</p> 236 </li> 237 <li><p><b>AddCustomHeader( $txt )</b></p> 238 <p>Add a custom header to the email</p> 239 </li> 240 <li><p><b>AddEmbeddedImage( $path, $cid, $name = '', $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 241 <p>Add an embedded image</p> 242 </li> 243 <li><p><b>AddReplyTo( $address, $name = '' )</b></p> 244 <p>Add a reply to address</p> 245 </li> 246 <li><p><b>AddStringAttachment( $string, $filename, $encoding = 'base64', $type = 'application/octent-stream' )</b></p> 247 <p>Add a file attachment</p> 248 </li> 249 <li><p><b>ClearAddresses()</b></p> 250 <p>Clear all addresses</p> 251 </li> 252 <li><p><b>ClearAllRecipients()</b></p> 253 <p>Clear all recipients</p> 254 </li> 255 <li><p><b>ClearAttachments()</b></p> 256 <p>Clear all attachments</p> 257 </li> 258 <li><p><b>ClearBCCs()</b></p> 259 <p>Clear all BCC addresses</p> 260 </li> 261 <li><p><b>ClearCCs()</b></p> 262 <p>Clear all CC addresses</p> 263 </li> 264 <li><p><b>ClearCustomHeaders()</b></p> 265 <p>Clear all custom headers</p> 266 </li> 267 <li><p><b>ClearReplyto()</b></p> 268 <p>Clear reply to address</p> 269 </li> 270 <li><p><b>IsError()</b></p> 271 <p>Check for an error condition</p> 272 </li> 273 <li><p><b>bool IsHTML( $bool )</b></p> 274 <p>Set the html flag</p> 275 <p><i>Note</i> possibly this should be a get and set method</p> 276 </li> 277 <li><p><b>bool IsMail()</b></p> 278 <p>Check wether we are using mail</p> 279 </li> 280 <li><p><b>bool IsQmail()</b></p> 281 <p>Check wether we are using qmail</p> 282 </li> 283 <li><p><b>IsSendmail()</b></p> 284 <p>Check wether we are using sendmail</p> 285 </li> 286 <li><p><b>IsSMTP()</b></p> 287 <p>Check wether we are using smtp</p> 288 </li> 289 <li><p><b>Send()</b></p> 290 <p>Send the currently prepared email</p> 291 </li> 292 <li><p><b>SetLanguage( $lang_type, $lang_path = '' )</b></p> 293 <p>Set the current language and <em>(optional)</em> language path</p> 294 </li> 295 <li><p><b>SmtpClose()</b></p> 296 <p>Close the smtp connection</p> 297 </li> 298 </ul> 299 <h3>Support</h3> 300 <p>This module does not include commercial support. However, there are a number of resources available to help you with it:</p> 301 <ul> 302 <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=&quot;http://techcom.dyndns.org&quot;>techcom.dyndns.org</a>.</li> 303 <li>Additional discussion of this module may also be found in the <a href=&quot;http://forum.cmsmadesimple.org&quot;>CMS Made Simple Forums</a>.</li> 304 <li>The author, calguy1000, can often be found in the <a href=&quot;irc://irc.freenode.net/#cms&quot;>CMS IRC Channel</a>.</li> 305 <li>Lastly, you may have some success emailing the author directly.</li> 306 </ul> 307 <p>As per the GPL, this software is provided as-is. Please read the text 308 of the license for the full disclaimer.</p> 309 310 <h3>Copyright and License</h3> 311 <p>Copyright © 2005, Robert Campbell <a href=&quot;mailto:calguy1000@hotmail.com&quot;><calguy1000@hotmail.com></a>. All Rights Are Reserved.</p> 312 <p>This module has been released under the <a href=&quot;http://www.gnu.org/licenses/licenses.html#GPL&quot;>GNU Public License</a>. You must agree to this license before using the module.</p> 313 '; 314 $lang['utmz'] = '156861353.1154951067.14.4.utmccn=(referral)|utmcsr=forum.cmsmadesimple.org|utmcct=/index.php/board,7.0.html|utmcmd=referral'; 315 $lang['utma'] = '156861353.950370003.1152189018.1154944287.1154951067.14'; 316 $lang['utmc'] = '156861353'; 317 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |