|
|
|
|
|
|
|
|
|
|
|
| Ahmedabad |
 |
| Rajkot |
 |
| Surat |
 |
| Baroda |
 |
|
| |
|
|
| |
| |
|
<% if Request("do") = "sendmail" then %>
<%
Const cdoSendUsingMethod = "http://schemas.microsoft.com/cdo/configuration/sendusing"
Const cdoSendUsingPort = 2
Const cdoSMTPServer = "http://schemas.microsoft.com/cdo/configuration/smtpserver"
Const cdoSMTPServerPort = "http://schemas.microsoft.com/cdo/configuration/smtpserverport"
Const cdoSMTPConnectionTimeout = "http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"
Const cdoSMTPAuthenticate = "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"
Const cdoBasic = 1
Const cdoSendUserName = "http://schemas.microsoft.com/cdo/configuration/sendusername"
Const cdoSendPassword = "http://schemas.microsoft.com/cdo/configuration/sendpassword"
Dim objConfig ' As CDO.Configuration
Dim objMessage ' As CDO.Message
Dim Fields ' As ADODB.Fields
' Get a handle on the config object and it's fields
Set objConfig = Server.CreateObject("CDO.Configuration")
Set Fields = objConfig.Fields
' Set config fields we care about
With Fields
.Item(cdoSendUsingMethod) = cdoSendUsingPort
.Item(cdoSMTPServer) = "mail.gujaratglobal.com"
.Item(cdoSMTPServerPort) = 25
.Item(cdoSMTPConnectionTimeout) = 10
.Item(cdoSMTPAuthenticate) = cdoBasic
.Item(cdoSendUserName) = "vmalvi@gujaratglobal.com" ' mail@domainname.com'
.Item(cdoSendPassword) = "vinoo"
.Update
End With
Set objMessage = Server.CreateObject("CDO.Message")
Set objMessage.Configuration = objConfig
with objMessage
.To = Request("mail")
.From = "yogesh@gujaratglobal.com" 'mail@domainname.com'
.Subject = "Send Link"
.HtmlBody = Request.ServerVariables("HTTP_REFERER")
.Send
End With
%>
<% end if %>
|
|
|
| |
|
|
| |
|
|
|
|
|
|
|
|
Gujaratglobal.com website is managed by a team of professional Journalists.
It is headed by Mr. Yogesh Sharma, Having 25 years of experience in
journalism in Gujarat. He also runs a Hindi daily Chaupal Chronicle.
|
Gujarat Global is the site dedicated to Gujarat and interests of people of
Gujarat.It gives news about Gujarat, political news, developments in
business and industry, success stories, education, tourism, fairs and
festivals of Gujarat and important and interesting photograph of Gujarat.
|
|
| © Copyright 2006 The Gujarat Global.com |
|
|