Web Hosting Forums Web Discussions on Hosting Webmaster forums Web Hosting Forums Domain Name Forums Web Hosting

Go Back   Web Hosting Forums Web Discussions on Hosting Webmaster forums Web Hosting Forums Domain Name Forums Web Hosting > Main Web Hosting Discussions Forums > Technical & Security Issues

Technical & Security Issues Web Hosting Forum - Configuring and optimizing web hosting servers and operating systems, developing administration scripts, building servers, protecting against hackers, and general security (SSL certificates, etc.)

Reply
 
LinkBack Thread Tools Display Modes
Old 09-06-2007, 12:45 AM   #1 (permalink)
HWHT Starter
Join Date: Sep 2007
Location: Hollister MO
Posts: 3
Tanner is on a distinguished road
Aspmail

Hi does anyone know anything about aspmail I have set up a database andI need to send a newsletter to all emails in the database. I have the form set up it lists all the emails and it acts like it is sending but I do not get the email. Help Please
Tanner is offline  
profile.gif sendpm.gif find.gif Reply With Quote
Old Sponsored Ads   # a.
Ads
Hosting Master
Join Date: Feb 2006
Location: HWHT
Posts: 1100
Ads is on a distinguished road



This message will go away once you are registered. Also, by registering, you will have access to all post topics, communicate privately with other members (PM), respond to polls, upload graphics, and access other special features! Registration is fast, simple and absolutely free so please Click Here to join our Web Hosting community today!
AdsPromoter is online
profile.gif sendpm.gif email.gif find.gif buddy.gif Reply With Quote
Old 09-11-2007, 02:38 AM   #2 (permalink)
HWHT Starter
Join Date: Dec 2005
Location: Net
Posts: 11
mainNIC.com is on a distinguished road
You might wanted to have it coded with with your email user name and password
mainNIC.com is offline  
profile.gif sendpm.gif find.gif Reply With Quote
Old 09-13-2007, 03:53 AM   #3 (permalink)
HWHT Starter
Join Date: Sep 2007
Location: Hollister MO
Posts: 3
Tanner is on a distinguished road
i NEED TO BE ABLE TO FILL OUT THIS FORM AND IT SEND A NEWSLETTER IT SENS THE NEWSLETTER OK BUT IT DOES NOT PIVCK UP THE TEXT IN THE INPUT BOX. HERE IS THE CODE.

<%
' change to address of your own SMTP server
strHost = "mail6.hollisterwebhosting.com"
%>

<HEAD>
<TITLE>Newsletter</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">

<%
' connect to the MS Access database in the same directory
strDbPath = Server.MapPath(".") & "\fpdb\newsletter.mdb"
ConnectStr = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & strDbPath

Set rs = Server.CreateObject("adodb.recordset")
rs.Open "clientname", ConnectStr, 2, 3

If Request("Send") <> "" Then
' send email to all users
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = strHost

Mail.From = "info@uniqueimpressionsstamps.com"
Mail.FromName = "info@uniqueimpressionsstamps.com"
Mail.AddReplyTo Request("From")
Mail.Subject = "Newsletter From Unique Impressions Stamps!"
Mail.Body = ""

' read address from DB and put them in the BCC field
While not rs.EOF
Mail.AddBcc rs("cemail"), rs("cname")
rs.MoveNext
Wend

If Request("Queue") <> "" Then
Mail.Queue = True
End if

' finally: send message
Mail.Send

Response.Write "Success!"
Else
' simply display the list of users in the database
Response.Write "<B>Currently in the user database:</B><P>"
While not rs.EOF
Response.Write rs("cemail") & " (" & rs("cname") & ")<BR>"
rs.MoveNext
Wend
End If
%>

<FORM>
Enter email: <textarea rows="16" name="Newsletter" cols="65"></textarea>
Send to Queue: <input type="checkbox" name="Queue" checked value="ON"><BR>

<INPUT TYPE=SUBMIT NAME="Send" VALUE="Send a message to them all">
</FORM>


</BODY>
</HTML>
Tanner is offline  
profile.gif sendpm.gif find.gif Reply With Quote
Old Sponsored Ads   # a.
Ads
Hosting Master
Join Date: Feb 2006
Location: HWHT
Posts: 1100
Ads is on a distinguished road



This message will go away once you are registered. Also, by registering, you will have access to all post topics, communicate privately with other members (PM), respond to polls, upload graphics, and access other special features! Registration is fast, simple and absolutely free so please Click Here to join our Web Hosting community today!
AdsPromoter is online
profile.gif sendpm.gif email.gif find.gif buddy.gif Reply With Quote
Old 03-20-2008, 08:09 PM   #4 (permalink)
HWHT Starter
Join Date: Mar 2008
Location: India
Posts: 3
webcash is on a distinguished road
I suggest you to look into CDOSYS as it is the default mail component available on windows 2003. Aspmail, i think you need to pay for it and many windows servers do not have it.

I don't code in ASP, so i can't help the code part. If you do a google search, you will find many CDOSYS sample codes.
__________________
Free File Hosting
webcash is offline  
profile.gif home.gif sendpm.gif find.gif Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:51 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.