Click here to Skip to main content
15,893,588 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
_Erik_11-Jan-11 1:43
_Erik_11-Jan-11 1:43 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom11-Jan-11 5:29
The Mighty Atom11-Jan-11 5:29 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Luc Pattyn11-Jan-11 5:42
sitebuilderLuc Pattyn11-Jan-11 5:42 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Simon_Whale11-Jan-11 5:53
Simon_Whale11-Jan-11 5:53 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom11-Jan-11 7:18
The Mighty Atom11-Jan-11 7:18 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Asday24-Jan-11 0:25
Asday24-Jan-11 0:25 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Tom Chantler11-Jan-11 21:54
professionalTom Chantler11-Jan-11 21:54 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
allodoxaphobia11-Jan-11 20:10
allodoxaphobia11-Jan-11 20:10 
mail is an ugly thing and should be avoided at all costs Smile | :)
First of: it is highly unreliable. It's not beause it was transferred to the mail server that it will actually ever arive at it's final destination.

Secondly, as pointed out by others; the odds that the client machine can actually connect to your mailserver are against you and diminishing every year due to it being such a popular medium to harass people with commercials Smile | :)
- the client must be connected to the internet
- it must be allowed to access your mail server, which on a lan it usually isn't.
- Recently a lot of anti-virus software and personal firewalls started blocking
programs from sending out mail due to the high number of spambot malware.

A better sollution would be to store your bug report locally first and then try to send it to a webserver via http.
This method is used by all the big players and preferred over smtp (mail), because :
- you have proof of delivery at the client side (so you can keep it stored as long as it was not delivered correctly)
- http is more likely to be allowed (outgoing) from a corporate lan. If they can surf the internet,
they can send you a bugreport
- if antivirus would start blocking programs from using http calls a lot of things wouldn't work any more so chances of
that happening in the future are slim. This increases the reliability othis sollution
- you have standard sollutions at your disposal to handle this (web services, ajax, etc...)
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
Lokanta_b11-Jan-11 20:11
Lokanta_b11-Jan-11 20:11 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
Gareth.pn11-Jan-11 22:31
professionalGareth.pn11-Jan-11 22:31 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
abhisheksingh15612-Jan-11 0:14
abhisheksingh15612-Jan-11 0:14 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
TheCodeMonk12-Jan-11 4:59
TheCodeMonk12-Jan-11 4:59 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
jschell12-Jan-11 8:30
jschell12-Jan-11 8:30 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
Fred Bakker12-Jan-11 8:49
Fred Bakker12-Jan-11 8:49 
AnswerRe: [VB.NET 2010] Sending mail only works sometimes Pin
Vika Dev12-Jan-11 12:17
Vika Dev12-Jan-11 12:17 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom12-Jan-11 13:13
The Mighty Atom12-Jan-11 13:13 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Michel Godfroid12-Jan-11 22:21
Michel Godfroid12-Jan-11 22:21 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Vika Dev13-Jan-11 3:58
Vika Dev13-Jan-11 3:58 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom13-Jan-11 8:30
The Mighty Atom13-Jan-11 8:30 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Luc Pattyn13-Jan-11 12:22
sitebuilderLuc Pattyn13-Jan-11 12:22 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom15-Jan-11 7:54
The Mighty Atom15-Jan-11 7:54 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
shreekar18-Jan-11 5:50
shreekar18-Jan-11 5:50 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom19-Jan-11 9:02
The Mighty Atom19-Jan-11 9:02 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
Vika Dev1-Feb-11 16:39
Vika Dev1-Feb-11 16:39 
GeneralRe: [VB.NET 2010] Sending mail only works sometimes Pin
The Mighty Atom2-Feb-11 5:35
The Mighty Atom2-Feb-11 5:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.