Archive

Archive for September, 2009

Sending Mail From Asp.NET on Shared Hosting

September 26th, 2009 Orhan Yediyıldız No comments

I’ve been trying to send email on a shared windows hosting from an Asp.NET page.  I finally found the solution for the problem.  It may be useful for those who have similar problems.

(I used System.Net.Mail namespace).

I was trying this code:

[csharp]
MailMessage msg = new MailMessage();
msg.From = new MailAddress("xxx@xxx.com");
msg.To.Add(new MailAddress("xxx@xxx.com"));
msg.Subject = "Test";
msg.Body = "Body Test";

SmtpClient client = new SmtpClient("smtp.xxx.com", 25);
client.Send(msg);
[/csharp]

This code gave this error:
“Mailbox unavailable. The server response was: 5.7.1″

When I was looking for the solution, I came up lots of suggestions.   Some of them required IIS configuration which I don’t have the chance to make.  Only one of them worked for me:
[csharp]
MailMessage msg = new MailMessage();
msg.From = new MailAddress("xxx@xxx.com");
msg.To.Add(new MailAddress("xxx@xxx.com"));
msg.Subject = "Test";
msg.Body = "Body Test";

SmtpClient client = new SmtpClient("smtp.xxx.com");
client.UseDefaultCredentials = false;
System.Net.NetworkCredential theCredential =
new System.Net.NetworkCredential("xxx@xxx.com", "xxx");
client.Credentials = theCredential;
client.Send(msg);
[/csharp]

MSP baÅŸvurum kabul edildi

September 13th, 2009 Orhan Yediyıldız No comments

Biraz geç kalınmış bir yazı ama yine de yazayım dedim. MSP başvuru sonuçları açıklandı. Benim de MSP başvurum kabul edilmiş.   Koç Üniversitesi Bilgisayar Kulübü Başkanı ben,  Bilgisayar Kulübü Başkan Yardımcısı Stefan Kirof ve Bilgisayar Kulübü Yönetim Kurulu Üyesi Eren Atbaş ile birlikte MSP görevini okulumuz adına üstleniyor olacağız. MSP olduğum için mutluyum, umarım eğlenceli ve etkinlik dolu bir sene geçiririz.

Yeni farkettim bazı MSP arkadaşlarımız küçük bir çalışma yaparak MSP listesine blog adreslerini eklemişler.  Bunun için bir kaç adres:

http://www.ibrahimkivanc.com/post/Yeniden-Microsoft-Student-Partner-Oldum.aspx
http://www.kaanbasli.com/post/2009/09/07/2009-2010-MSP-sonuclari-aciklandi.aspx

http://tisba.biz/post/2009-2010-MSPler.aspx

Categories: Havadan Sudan Tags: , , ,