<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 22:33:30 +0000</lastBuildDate>
    <item>
      <title>(SQL) Sending Mail in MS SQL - sankarwaits</title>
      <link>https://snipplr.com/view/323238/sending-mail-in-ms-sql</link>
      <description>&lt;p&gt;Following steps to be completed to configure an email account and send email from SQL Server&lt;/p&gt;</description>
      <pubDate>Fri, 07 Apr 2017 15:04:47 UTC</pubDate>
      <guid>https://snipplr.com/view/323238/sending-mail-in-ms-sql</guid>
    </item>
    <item>
      <title>(Python) Merge Multiple Word Documents into Single Doc using REST API in Python - johansonkatherine</title>
      <link>https://snipplr.com/view/73997/merge-multiple-word-documents-into-single-doc-using-rest-api-in-python</link>
      <description>&lt;p&gt;This REST example uses pycurl library to send HTTP request and handle HTTP response so you need to install it to use this example. Once input Word documents are uploaded, you can use the following URI to merge documents on Aspose for Cloud or any supported third party storage.&#13;
&#13;
&#13;
http://api.aspose.com/v1.1/words/MainDocument.docx/appendDocument&#13;
&#13;
&#13;
You can use a couple of optional parameters with the above mentioned URI. All or specific parameters can be used according to your requirement.&#13;
&#13;
After building URI, you need to go through the following steps:&#13;
&#13;
â€¢	Set App SID and App Key and sign URI. See section 1 of the following code and Sign URI method for more details.&#13;
â€¢	Build JSON to post in the request body. A list of input documents including their paths and import format modes should be provided. See section 2 of the following code.&#13;
â€¢	Send a POST request to Aspose for Cloud service. See section 3 of the following code and process_command method for more details.&#13;
â€¢	Download merged document file if required. See section 4 of the following code.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Mar 2014 19:03:53 UTC</pubDate>
      <guid>https://snipplr.com/view/73997/merge-multiple-word-documents-into-single-doc-using-rest-api-in-python</guid>
    </item>
    <item>
      <title>(PHP) Implement Simple Mail Merge or MailMerge with Regions in Cloud Using PHP - johansonkatherine</title>
      <link>https://snipplr.com/view/73612/implement-simple-mail-merge-or-mailmerge-with-regions-in-cloud-using-php</link>
      <description>&lt;p&gt;Mail merge allows you to produce document (potentially large numbers of documents) from a single template and a structured data source. The letter may be sent out to many recipients with small changes, such as a change of address or a change in the greeting line. It can also be used to generate business reports, purchase orders, receipts, catalogs, inventories, and invoices etc. &#13;
&#13;
&#13;
&#13;
Aspose.Words for Cloud Mail Merge allows you to generate documents from a template and XML in any language including .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more. You can use it with any language or platform that supports REST. (Almost all platforms and languages support REST and provide native REST clients to work with REST API). &#13;
&#13;
&#13;
&#13;
This post covers mail merge in PHP, you can check Aspose.Words for Cloud documentation for other languages. &#13;
&#13;
&#13;
http://www.aspose.com/docs/display/wordscloud/Working+with+Mail+Merge&lt;/p&gt;</description>
      <pubDate>Fri, 07 Feb 2014 18:57:34 UTC</pubDate>
      <guid>https://snipplr.com/view/73612/implement-simple-mail-merge-or-mailmerge-with-regions-in-cloud-using-php</guid>
    </item>
    <item>
      <title>(PHP) Check University Email (.edu) - phpdev</title>
      <link>https://snipplr.com/view/72365/check-university-email-edu</link>
      <description>&lt;p&gt;**Example of use:**&#13;
    &#13;
    if (!isUniversityEmail('you@post.harvard.edu'))&#13;
         exit('You must have a valid and .edu email address to register for an account.');&lt;/p&gt;</description>
      <pubDate>Sat, 14 Sep 2013 10:26:02 UTC</pubDate>
      <guid>https://snipplr.com/view/72365/check-university-email-edu</guid>
    </item>
    <item>
      <title>(PHP) Function to Auto Convert URL into Clickable Hyperlink (Anchor  Tag) - fackz</title>
      <link>https://snipplr.com/view/70906/function-to-auto-convert-url-into-clickable-hyperlink-anchor--tag</link>
      <description>&lt;p&gt;In wordpress, if you want to auto convert all URLs in your string into clickable hyperlinks, you can actually do it using the built-in function make_clickable(). &#13;
&#13;
If you need to do that outside of wordpress, you can use the same function.&#13;
Example:&#13;
$string = 'I have some texts here and also links such as http://www.youtube.com , www.haha.com and lol@example.com. They are ready to be replaced.';&#13;
 &#13;
echo make_clickable($string);&lt;/p&gt;</description>
      <pubDate>Tue, 23 Apr 2013 23:40:35 UTC</pubDate>
      <guid>https://snipplr.com/view/70906/function-to-auto-convert-url-into-clickable-hyperlink-anchor--tag</guid>
    </item>
    <item>
      <title>(PHP) Send Mail using mail function in PHP - apphp-snippets</title>
      <link>https://snipplr.com/view/69984/send-mail-using-mail-function-in-php</link>
      <description>&lt;p&gt;The mail() function allows you to send emails directly from a script. Remember, that most of shared hosting providers require (for security reasons) to use the domain name of your hosting in "FROM" email, e.g. from@yourdomain.com for http://yourdomain.com site.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Feb 2013 21:23:17 UTC</pubDate>
      <guid>https://snipplr.com/view/69984/send-mail-using-mail-function-in-php</guid>
    </item>
    <item>
      <title>(PHP) PHP Mail Letter Class - Zayac</title>
      <link>https://snipplr.com/view/68783/php-mail-letter-class</link>
      <description>&lt;p&gt;This is a Class that allows you create a letter with correct headers and send it to multi-emails.&lt;/p&gt;</description>
      <pubDate>Tue, 27 Nov 2012 23:38:35 UTC</pubDate>
      <guid>https://snipplr.com/view/68783/php-mail-letter-class</guid>
    </item>
    <item>
      <title>(PHP) PHP Pear Remove Undeliverable Emails from POP3 Account - squadsupply</title>
      <link>https://snipplr.com/view/64879/php-pear-remove-undeliverable-emails-from-pop3-account</link>
      <description>&lt;p&gt;You can set this as a cron to automatically clean up unsubscribes after sending out a mass email.&lt;/p&gt;</description>
      <pubDate>Wed, 16 May 2012 12:40:10 UTC</pubDate>
      <guid>https://snipplr.com/view/64879/php-pear-remove-undeliverable-emails-from-pop3-account</guid>
    </item>
    <item>
      <title>(PHP) IP Blacklist Check Script - DNSBL</title>
      <link>https://snipplr.com/view/64564/ip-blacklist-check-script</link>
      <description>&lt;p&gt;Enter any suspicious IP address that you wanted to check into the form field and press the "LOOKUP" button&lt;/p&gt;</description>
      <pubDate>Sun, 15 Apr 2012 18:44:22 UTC</pubDate>
      <guid>https://snipplr.com/view/64564/ip-blacklist-check-script</guid>
    </item>
    <item>
      <title>(PHP) php pear mail UTF-8 encoding - Reportme</title>
      <link>https://snipplr.com/view/60329/php-pear-mail-utf8-encoding</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 29 Oct 2011 04:02:23 UTC</pubDate>
      <guid>https://snipplr.com/view/60329/php-pear-mail-utf8-encoding</guid>
    </item>
    <item>
      <title>(C#) Sending different Email types  with ASP.Net - derebus</title>
      <link>https://snipplr.com/view/57068/sending-different-email-types--with-aspnet</link>
      <description>&lt;p&gt;Como insertar imgenes en un envio via email en ASP.NET&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jul 2011 09:29:25 UTC</pubDate>
      <guid>https://snipplr.com/view/57068/sending-different-email-types--with-aspnet</guid>
    </item>
    <item>
      <title>(Python) Enviando correo con Gmail. - andriyleu</title>
      <link>https://snipplr.com/view/57066/enviando-correo-con-gmail</link>
      <description>&lt;p&gt;Simple cÃ³digo en python que te pregunta tu email (gmail) y el correo de tu amigo, pregunta tu contraseÃ±a para loguearse vÃ­a SMTP en Gmail y enviar el correo. Copyright: http://andriy.im&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jul 2011 08:30:28 UTC</pubDate>
      <guid>https://snipplr.com/view/57066/enviando-correo-con-gmail</guid>
    </item>
    <item>
      <title>(PHP) using the PHP mail function - olemedia</title>
      <link>https://snipplr.com/view/54527/using-the-php-mail-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 28 May 2011 02:13:41 UTC</pubDate>
      <guid>https://snipplr.com/view/54527/using-the-php-mail-function</guid>
    </item>
    <item>
      <title>(PHP) Send email using GMail SMTP server from PHP page - wnasich</title>
      <link>https://snipplr.com/view/51154/send-email-using-gmail-smtp-server-from-php-page</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Mar 2011 09:47:12 UTC</pubDate>
      <guid>https://snipplr.com/view/51154/send-email-using-gmail-smtp-server-from-php-page</guid>
    </item>
    <item>
      <title>(PHP) PHP - Mailer Code - erraja_07</title>
      <link>https://snipplr.com/view/49737/php--mailer-code</link>
      <description>&lt;p&gt;Advance Mail function using PHP Mailer Class&lt;/p&gt;</description>
      <pubDate>Sat, 26 Feb 2011 21:25:38 UTC</pubDate>
      <guid>https://snipplr.com/view/49737/php--mailer-code</guid>
    </item>
    <item>
      <title>(Symfony) Send HTML mail with view partial from Symfony task - ef</title>
      <link>https://snipplr.com/view/49402/send-html-mail-with-view-partial-from-symfony-task</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 22 Feb 2011 20:13:11 UTC</pubDate>
      <guid>https://snipplr.com/view/49402/send-html-mail-with-view-partial-from-symfony-task</guid>
    </item>
    <item>
      <title>(PHP) WP Email Encoder Bundle - freelancephp</title>
      <link>https://snipplr.com/view/49005/wp-email-encoder-bundle</link>
      <description>&lt;p&gt;Encode mailto links and (plain) email addresses on your site and hide them from spambots. Easy to use, plugin works directly when activated.&#13;
&#13;
Features&#13;
* Protect all emails and mailto links&#13;
* Check posts, widgets, comments and RSS feeds&#13;
* Encode all kind of content (text and html)&#13;
* Email Encoder Form (in admin and also for your site)&#13;
* Use params in mailto links, like: cc, bcc, subject, body&#13;
* And more.&lt;/p&gt;</description>
      <pubDate>Mon, 14 Feb 2011 23:01:44 UTC</pubDate>
      <guid>https://snipplr.com/view/49005/wp-email-encoder-bundle</guid>
    </item>
    <item>
      <title>(Other) Sending emails from localhost with SSMTP - takel</title>
      <link>https://snipplr.com/view/46141/sending-emails-from-localhost-with-ssmtp</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 26 Dec 2010 21:27:29 UTC</pubDate>
      <guid>https://snipplr.com/view/46141/sending-emails-from-localhost-with-ssmtp</guid>
    </item>
    <item>
      <title>(Ruby) send mail via GMail with Pony - insanedreamer</title>
      <link>https://snipplr.com/view/43468/send-mail-via-gmail-with-pony</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 03 Nov 2010 08:44:48 UTC</pubDate>
      <guid>https://snipplr.com/view/43468/send-mail-via-gmail-with-pony</guid>
    </item>
    <item>
      <title>(PHP) Ð¡Ð¾Ð±ÑÑ‚Ð²ÐµÐ½Ð½Ñ‹Ð¹ ÑÐºÑ€Ð¸Ð¿Ñ‚ Ð·Ð°Ð¿Ð¸ÑÐ¸ Ð¿Ð¸ÑÐµÐ¼ Ð² webform - nuwak</title>
      <link>https://snipplr.com/view/43403/-----webform</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 02 Nov 2010 02:51:01 UTC</pubDate>
      <guid>https://snipplr.com/view/43403/-----webform</guid>
    </item>
    <item>
      <title>(PHP) Send mail with Swift Mailer - juanchifc</title>
      <link>https://snipplr.com/view/42659/send-mail-with-swift-mailer</link>
      <description>&lt;p&gt;Script to send mails with Swift Mailer&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 09:03:48 UTC</pubDate>
      <guid>https://snipplr.com/view/42659/send-mail-with-swift-mailer</guid>
    </item>
    <item>
      <title>(Bash) OSX Server - Group EMail Enabler v0.2 - uptimejeff</title>
      <link>https://snipplr.com/view/42328/osx-server--group-email-enabler-v02</link>
      <description>&lt;p&gt;If you have any contributions, please comment here.&lt;/p&gt;</description>
      <pubDate>Fri, 15 Oct 2010 07:48:57 UTC</pubDate>
      <guid>https://snipplr.com/view/42328/osx-server--group-email-enabler-v02</guid>
    </item>
    <item>
      <title>(MySQL) All mail account user/pass on Plesk server - fillyouin</title>
      <link>https://snipplr.com/view/42126/all-mail-account-userpass-on-plesk-server</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 12 Oct 2010 21:31:22 UTC</pubDate>
      <guid>https://snipplr.com/view/42126/all-mail-account-userpass-on-plesk-server</guid>
    </item>
    <item>
      <title>(PHP) Send UTF-8 encoded mail with custom to and reply-to - stz184</title>
      <link>https://snipplr.com/view/41851/send-utf8-encoded-mail-with-custom-to-and-replyto</link>
      <description>&lt;p&gt;Parameters:\r\n- $to - email address to send the mail\r\n- $subject - subject\r\n- $message - message body (HTML allowed)\r\n- $from_name - sender\'s name\r\n- $from_email - sender\'s email\r\n- $reply_to_name = custom, different from $from_name name to be used for replying to this message\r\n- $reply_to_email = custom, different from $from_email email to be used for replying to this message&lt;/p&gt;</description>
      <pubDate>Fri, 08 Oct 2010 18:25:16 UTC</pubDate>
      <guid>https://snipplr.com/view/41851/send-utf8-encoded-mail-with-custom-to-and-replyto</guid>
    </item>
    <item>
      <title>(PHP) symfony html mail via swift mailer - metoikos</title>
      <link>https://snipplr.com/view/41673/symfony-html-mail-via-swift-mailer</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 07 Oct 2010 00:49:44 UTC</pubDate>
      <guid>https://snipplr.com/view/41673/symfony-html-mail-via-swift-mailer</guid>
    </item>
    <item>
      <title>(PHP) Envio de emails em modo autenticado no PHP usando  phpmailer - gpupo</title>
      <link>https://snipplr.com/view/41366/envio-de-emails-em-modo-autenticado-no-php-usando--phpmailer</link>
      <description>&lt;p&gt;O envio de emails deve ser feito de modo autenticado, utilizando o smtp do servidor.&#13;
 Este script Ã© um exemplo de envio desta forma, usando a classe phpmailer para isso.&lt;/p&gt;</description>
      <pubDate>Sun, 03 Oct 2010 00:28:59 UTC</pubDate>
      <guid>https://snipplr.com/view/41366/envio-de-emails-em-modo-autenticado-no-php-usando--phpmailer</guid>
    </item>
    <item>
      <title>(Bash) Find size of mailboxes - apro2000</title>
      <link>https://snipplr.com/view/40014/find-size-of-mailboxes</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 05 Sep 2010 05:24:20 UTC</pubDate>
      <guid>https://snipplr.com/view/40014/find-size-of-mailboxes</guid>
    </item>
    <item>
      <title>(Bash) Sending html from Mutt - yisreldov</title>
      <link>https://snipplr.com/view/37938/sending-html-from-mutt</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 27 Jul 2010 17:43:19 UTC</pubDate>
      <guid>https://snipplr.com/view/37938/sending-html-from-mutt</guid>
    </item>
    <item>
      <title>(Ruby) Find Recently Flagged Messages in Mail.app with appscript - pdxmph</title>
      <link>https://snipplr.com/view/36664/find-recently-flagged-messages-in-mailapp-with-appscript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 04 Jul 2010 04:39:29 UTC</pubDate>
      <guid>https://snipplr.com/view/36664/find-recently-flagged-messages-in-mailapp-with-appscript</guid>
    </item>
    <item>
      <title>(PHP) Php Feedback Form w/ Session and Browser Info - vagrantradio</title>
      <link>https://snipplr.com/view/35628/php-feedback-form-w-session-and-browser-info</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jun 2010 10:52:26 UTC</pubDate>
      <guid>https://snipplr.com/view/35628/php-feedback-form-w-session-and-browser-info</guid>
    </item>
    <item>
      <title>(Python) Python GMail SMTP Example - oznek</title>
      <link>https://snipplr.com/view/32156/python-gmail-smtp-example</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 16 Apr 2010 22:50:49 UTC</pubDate>
      <guid>https://snipplr.com/view/32156/python-gmail-smtp-example</guid>
    </item>
    <item>
      <title>(Bash) mailing system profile on mac osx - adkatrit</title>
      <link>https://snipplr.com/view/28705/mailing-system-profile-on-mac-osx</link>
      <description>&lt;p&gt;don't forget to take my email out :)&lt;/p&gt;</description>
      <pubDate>Sun, 21 Feb 2010 17:22:39 UTC</pubDate>
      <guid>https://snipplr.com/view/28705/mailing-system-profile-on-mac-osx</guid>
    </item>
    <item>
      <title>(PHP) Validate emails with SMTP and PHP - ginoplusio</title>
      <link>https://snipplr.com/view/25505/validate-emails-with-smtp-and-php</link>
      <description>&lt;p&gt;This function validate a mail address in a smart way: if the address to validate has a correct syntax (checked with regular expression), it tries to connect to the mx server of the address. This means that the program have to use the smtp protocol to talk with each mx server registered in the dns for that domain address.&#13;
When a connection with an mx server is established, the program presents himself with the $probe_address (if no probe_address is specified it will use the SERVER_ADMIN setting of the php.ini file) and asks to send a mail message to the address to validate. If the server responds that the destination mailbox is ok, it stops and return ok value, else it gives you the bad answer of the mail server.&lt;/p&gt;</description>
      <pubDate>Sun, 27 Dec 2009 05:27:33 UTC</pubDate>
      <guid>https://snipplr.com/view/25505/validate-emails-with-smtp-and-php</guid>
    </item>
    <item>
      <title>(PHP) Send Article to a Friend by Email - gd6d</title>
      <link>https://snipplr.com/view/24707/send-article-to-a-friend-by-email</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 13 Dec 2009 10:12:13 UTC</pubDate>
      <guid>https://snipplr.com/view/24707/send-article-to-a-friend-by-email</guid>
    </item>
    <item>
      <title>(AppleScript) Mac Mail - Growl - jodm</title>
      <link>https://snipplr.com/view/24620/mac-mail--growl</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Dec 2009 13:08:20 UTC</pubDate>
      <guid>https://snipplr.com/view/24620/mac-mail--growl</guid>
    </item>
    <item>
      <title>(Bash) Send email using mail command on linux - webonomic</title>
      <link>https://snipplr.com/view/24239/send-email-using-mail-command-on-linux</link>
      <description>&lt;p&gt;This command will email the contents of emailbody.txt to somebody@domain.com with the subject My subject line.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Dec 2009 23:56:13 UTC</pubDate>
      <guid>https://snipplr.com/view/24239/send-email-using-mail-command-on-linux</guid>
    </item>
    <item>
      <title>(Bash) Run Archivemail on all your IMAP folders. - berkes</title>
      <link>https://snipplr.com/view/24111/run-archivemail-on-all-your-imap-folders</link>
      <description>&lt;p&gt;Change 'username' (twice!) with your imap username,'password'with your imap password, and 'example.com' (twice!) with the url of your imap mailserver.&#13;
&#13;
Works on: Ubuntu with Evolution, sqlite3 and archivemail installed. &#13;
Evolution is required because evolution stores the available folders in IMAP. &#13;
sqlite3 is requird to extract those available folders and recurse trough them.&#13;
&#13;
This command looks up all the available folders in your imap box, recurses trough them and runs archivemail to archive all the online mail. &#13;
&#13;
NOTE: remove the -n (dy-run) flag to actually archive the items.&#13;
NOTE: remove the -v (verbose) flag to be less verbose.&#13;
&#13;
TODO: option to purge empty directories.&#13;
TODO: store username, password and mailserverURL in a $VAR.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:49:15 UTC</pubDate>
      <guid>https://snipplr.com/view/24111/run-archivemail-on-all-your-imap-folders</guid>
    </item>
    <item>
      <title>(PHP) php form mail: send mail after display of confirmation page - miebach</title>
      <link>https://snipplr.com/view/22650/php-form-mail-send-mail-after-display-of-confirmation-page</link>
      <description>&lt;p&gt;the user sees the confirmation page immedeateley. this is helpful if the mail() function takes some time&lt;/p&gt;</description>
      <pubDate>Fri, 06 Nov 2009 09:37:05 UTC</pubDate>
      <guid>https://snipplr.com/view/22650/php-form-mail-send-mail-after-display-of-confirmation-page</guid>
    </item>
    <item>
      <title>(PHP) Sending a Simple email using PHP - adamcoulombe</title>
      <link>https://snipplr.com/view/20716/sending-a-simple-email-using-php</link>
      <description>&lt;p&gt;nothing special :)&lt;/p&gt;</description>
      <pubDate>Tue, 06 Oct 2009 10:41:59 UTC</pubDate>
      <guid>https://snipplr.com/view/20716/sending-a-simple-email-using-php</guid>
    </item>
    <item>
      <title>(Python) send mail with attachments - manatlan</title>
      <link>https://snipplr.com/view/19473/send-mail-with-attachments</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Sep 2009 03:12:52 UTC</pubDate>
      <guid>https://snipplr.com/view/19473/send-mail-with-attachments</guid>
    </item>
    <item>
      <title>(PHP) Validate e-mail - websuslik</title>
      <link>https://snipplr.com/view/16115/validate-email</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 19 Jun 2009 06:48:44 UTC</pubDate>
      <guid>https://snipplr.com/view/16115/validate-email</guid>
    </item>
    <item>
      <title>(Bash) Disable Mail for all domains in Plesk - bhubbard</title>
      <link>https://snipplr.com/view/15523/disable-mail-for-all-domains-in-plesk</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 04 Jun 2009 12:29:55 UTC</pubDate>
      <guid>https://snipplr.com/view/15523/disable-mail-for-all-domains-in-plesk</guid>
    </item>
    <item>
      <title>(Bash) Start Plesk Spamassassin - bhubbard</title>
      <link>https://snipplr.com/view/15522/start-plesk-spamassassin</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 04 Jun 2009 12:28:28 UTC</pubDate>
      <guid>https://snipplr.com/view/15522/start-plesk-spamassassin</guid>
    </item>
    <item>
      <title>(Bash) stop plesk spamassassin - bhubbard</title>
      <link>https://snipplr.com/view/15521/stop-plesk-spamassassin</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 04 Jun 2009 12:27:32 UTC</pubDate>
      <guid>https://snipplr.com/view/15521/stop-plesk-spamassassin</guid>
    </item>
    <item>
      <title>(Bash) Send GnuPG signed mail from console - wdso</title>
      <link>https://snipplr.com/view/14054/send-gnupg-signed-mail-from-console</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 15 Apr 2009 06:28:46 UTC</pubDate>
      <guid>https://snipplr.com/view/14054/send-gnupg-signed-mail-from-console</guid>
    </item>
    <item>
      <title>(Java) JBoss Mail-Config with Authentication - mahome</title>
      <link>https://snipplr.com/view/13702/jboss-mailconfig-with-authentication</link>
      <description>&lt;p&gt;This is the default Mail-Config file mail-service.xml by JBoss with the additional line for authentication.&lt;/p&gt;</description>
      <pubDate>Thu, 02 Apr 2009 04:40:15 UTC</pubDate>
      <guid>https://snipplr.com/view/13702/jboss-mailconfig-with-authentication</guid>
    </item>
    <item>
      <title>(Java) JavaMail - Sending with Authentication - mahome</title>
      <link>https://snipplr.com/view/13667/javamail--sending-with-authentication</link>
      <description>&lt;p&gt;Simple Mail Example.&#13;
&#13;
Tags: SMTP, Mail, Java&#13;
&#13;
[JavaMail (Sun)](http://java.sun.com/products/javamail/)&#13;
[JavaMail (Galileo)](http://openbook.galileocomputing.de/javainsel8/javainsel_18_012.htm#mj2a4110a634c82a3f676d8f87a50d6567)&lt;/p&gt;</description>
      <pubDate>Wed, 01 Apr 2009 10:44:09 UTC</pubDate>
      <guid>https://snipplr.com/view/13667/javamail--sending-with-authentication</guid>
    </item>
    <item>
      <title>(Bash) Sending out Mail  using Telnet - paulbooker</title>
      <link>https://snipplr.com/view/11249/sending-out-mail--using-telnet</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 16 Jan 2009 11:40:12 UTC</pubDate>
      <guid>https://snipplr.com/view/11249/sending-out-mail--using-telnet</guid>
    </item>
    <item>
      <title>(Python) Backup and File Mailing - mjsmagalhaes</title>
      <link>https://snipplr.com/view/10162/backup-and-file-mailing</link>
      <description>&lt;p&gt;This source code uses the xml file posted here(http://snipplr.com/view/4138/backup-script2--confg-file/) to know which file should be sent and mailing configuration.&lt;/p&gt;</description>
      <pubDate>Sun, 30 Nov 2008 14:48:34 UTC</pubDate>
      <guid>https://snipplr.com/view/10162/backup-and-file-mailing</guid>
    </item>
    <item>
      <title>(PHP) Formatting PHP mail params - gfazioli</title>
      <link>https://snipplr.com/view/8900/formatting-php-mail-params</link>
      <description>&lt;p&gt;The right way to send a mail with POST params&lt;/p&gt;</description>
      <pubDate>Wed, 08 Oct 2008 16:43:12 UTC</pubDate>
      <guid>https://snipplr.com/view/8900/formatting-php-mail-params</guid>
    </item>
  </channel>
</rss>
