Blogs1 - 10 of 287 recent posts for tag:smtp
04
Jan
2012
ASP.NET SMTP Sending Error

37 days ago by Hassan Voyeau

I think I grew a few grey hairs today trying to sort this one out. I had the standard SMTP email sending code in my app but kept getting the following error even after trying many different permutations of properties and code. Code Error : No connection could be made because the target machine activ ...

03
Jan
2012
IMAP and Exchange.

38 days ago by iveryam

Note to UC Davis students: Your @ucdavis.edu email is actually a Gmail account. It is easy to set up your email on your computer. Incoming Server: imap.gmail.com Connection Security: SSL Port: 993 Outgoing Server: smtp.gmail.com Use Authentication: Yes Connection Security: STARTTLS Port: 465 or 587 ...

01
Jan
2012
Send iCalendar meeting requests for different timezone

40 days ago by Pawel Lesnikowski

Usually you define time of an event in relation to UTC time zone. If you need to define event on 9:00 o’clock in Alaska you simply need to subtract 9 hours from event time to get the event time in UTC (18:00:00). 18 – 9 = 9. It all works great in December (Alaska is UTC-9), but in May, daylight savi ...

30
Dec
2011
Win32 SMTP Consolen Util

42 days ago by Volker Engels

Einfaches Kommandozeilen Tool Blat ( http://www.blat.net/) zum Senden von einfachen Emails mit Anhang von der Console. Auch zum Bachprocessing geeignet mit dem Motto: schnell – klein – einfach zu nutzen – RFC kompatibel ( http://www.blat.net/?RFC.html) . Syntax unter http://www.blat.net/syntax/synta ...

SMTP y envío de correos desde Dynamics NAV II

42 days ago by blopez

Hola, Tras el primer post enfocando la problemática actual con Dynamics NAV con el envío de correos SMTP, voy a proponer una solución desarrollada, a pesar de que existe un parche que soluciona el problema de forma estándar en versiones 2009. Debido a que ya existe una solución, no voy a explayarme ...

29
Dec
2011
Añadir la cabecera Content-type al usar el comando mail o mailx

43 days ago by Alex

En algunas versiones del comando mail|mailx|Mail (creo que en las antiguas) se podía especificar una cabecera con el parámetro -a: $ mail --help usage: mail [-dEIinv] [-a header] [-b bcc-addr] [-c cc-addr] [-s subject] to-addr ... De este modo era sencillo especificar cualquier cabecera y modificarl ...

Quick perl script to test smtp auth

43 days ago by vostorga

#!perl use warnings; use strict; use Net::SMTP; my $smtpserver = 'xxx.yyy.zzz.www'; my $smtpuser = 'foo@bar.com'; my $fromemail = 'bleh@bar.com'; my $smtp = Net::SMTP->new($smtpserver, Timeout => 10, Debug => 1); die "Could not connect to server!\n" unless $smtp; $smtp->auth ( 'user', 'secret' ) or ...

How to send mail using smtpclient

43 days ago by admin

You can create a Mail Message dynamically and send the mail to recepient list through smtp client. You need to use System.Net.Mail to use the smtp client class. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 [...] How to send mail using smtpclient is a post from: Live with D ...

How to Send email direct from linux terminal

43 days ago by xMoDx

help To send an email from console you need to use mail command, which is an intelligent mail processing system which has a command syntax reminiscent of ed with lines replaced by messages. To send an email to somewhere@domain.com you need to type following command: $ mail user@domain.tld Output: Yo ...

28
Dec
2011
Reply to an email

44 days ago by Pawel Lesnikowski

You can use Mail.dll to reply to an HTML or plain-text email. ReplyBuilder class allows you to specify custom HTML and plain-text templates for the reply. Mail.dll will parse HTML extract body part, and build-in template engine will do the rest. The next great thing is that plain-text version of the ...

Previous1234567