Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

pomoc oko automatskog slanja e-maila

[es] :: .NET :: ASP.NET :: pomoc oko automatskog slanja e-maila

[ Pregleda: 1926 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

sparc
Sladjan Parc

Član broj: 65760
Poruke: 134
*.static.isp.telekom.rs.



Profil

icon pomoc oko automatskog slanja e-maila23.09.2009. u 12:18 - pre 177 meseci
u web configu imam definisano sledece:

<system.net>
<mailSettings>
<smtp from="[email protected]">
<network defaultCredentials="true" host="mail.parcc.net"
password="" userName="" />
</smtp>
</mailSettings>
</system.net>

u vb imam sledece

Dim config As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"~\\web.config")


Dim mailSettings As System.Net.Configuration.MailSettingsSectionGroup = _
CType(config.GetSectionGroup("system.net/mailSettings"), _
System.Net.Configuration.MailSettingsSectionGroup)

Dim fromstring As String
If Not IsDBNull(mailSettings) Then
fromstring = mailSettings.Smtp.From
End If

'mail
Dim message As New System.Net.Mail.MailMessage()

message.From = New System.Net.Mail.MailAddress(fromstring)

message.To.Add(fromstring)
message.Subject = "Prijava novog korisnika"
message.Body = "Prijavljen je novi korisnik "
Dim client As New System.Net.Mail.SmtpClient
client.Send(message)

i stalno mi javlja gresku

an error ocurreed loading a configuration file: failed to map the parth "/".

gde je greska/
 
Odgovor na temu

pl4stik
Senior .NET programmer/Consultant
oDesk
NI na nebu NI na zemlji

Član broj: 173596
Poruke: 715
93.86.5.*

Sajt: xx-auth.com.azhar.arvixe...


+31 Profil

icon Re: pomoc oko automatskog slanja e-maila23.09.2009. u 22:06 - pre 177 meseci
Dim config As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"~/web.config")
To sto nekoliko miliona ljudi tvrdi da nisi u pravu ne znaci da stvarno nisi - Frank Zappa

https://youtu.be/DLe358DPGXU
 
Odgovor na temu

[es] :: .NET :: ASP.NET :: pomoc oko automatskog slanja e-maila

[ Pregleda: 1926 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.