مبتدی ام! کمک کنید!

alirtah

Member
من تقریبا چیزی از asp نمیدونم! یه فایل فلش دارم که یه سری متغیر میفرسته به فایل asp و asp میل میکنه به یه ایمیل ... مشکل اینه که سروری که من استفاده میکنم برای این موضوع احتیاج به identification و معرفی user and password داره. لطفا بگید چهجوری این کار رو انجام بدم. بدجور گیر کردم :cry:

فایل: basic_mail.zip
 

rah

Member
ای بابا، شیطونه می گه کمکش کنم ها !!! :mrgreen:
یکی این بنده خدا رو کمکش کنه دیگه !!!:lol:
 

rah

Member
منظوری نداستم علی جون
فقط یه خورده قپی اومدم
----
بعدشم ببین عزیز جون، مطمئن باش اینجا مشکلت حل میشه
من که خودم نتونستم جواب سؤالتو بدم ولی دوستانی هستند که بتونن جوابتو بدن
فقط ممکنه وقت نکرده باشن به فروم سر بزنن
----
موفق باشی :)
 

m1pfard

Member
شاید هم بعضیا مثل من سواد این کارو ندارن.
please wait !
لاتعجل !
 

alirtah

Member
شرمنده عصبانی بودم ....

جوابشو پیدا کردم میذارم اینجا اگه دیگران هم مشکل پیدا کردن استفاده کنن / اینم سایت مرجع: http://kb.seekdotnet.com/ViewArticle/152data.aspx

کد:
[LEFT]Please note that our mail server is configured with Authentication.

Below is the code snippet for ASP.

Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory. 
Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network). 

Const cdoAnonymous = 0 'Do not authenticate
Const cdoBasic = 1 'basic (clear-text) authentication
Const cdoNTLM = 2 'NTLM

Set objMessage = Server.CreateObject("CDO.Message") 
objMessage.Subject = "Example CDO Message" 
objMessage.Sender = "[email protected]" 
objMessage.From = "[email protected]" 
objMessage.To = "[email protected]" 
objMessage.TextBody = "This is some sample message text.." & vbCRLF & "It was sent using SMTP authentication."

'==This section provides the configuration information for the remote SMTP server.

objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 

'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.your.com"

'Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic

'Your UserID on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusername") = "youruserid"

'Your password on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "yourpassword"

'Server port (typically 25)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 

'Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False

'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

objMessage.Configuration.Fields.Update
objMessage.Send

Note :
Change the SMTP Server with your mail.yourdomain.com
Username --> Change with your email account in this format ([email protected]).
Password-> Your email password.
[/LEFT]
 

جدیدترین ارسال ها

بالا