Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc.

Go Back   Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc. > >> General Public > Chit Chat Public
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Chit Chat Public Talk about any thing you want! This forum is public.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-18-2005, 04:50 AM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
ezmlm program

Hello,

Does anyone know how to control the messages from ezmlm program of the hsphere cpanel?

It is in English while i want to make them in Greek.

Still is there anyway for me to add a link or a form on my website for visitors to add themselves automaticaly on the mailling list?

Thank you.
Reply With Quote
  #2  
Old 10-18-2005, 06:46 AM
cleonard's Avatar
cleonard cleonard is offline
BootNumlock Wanna Be
Vortech Inc. Customer
 
Location: Ohio
Send a message via ICQ to cleonard
I believe you are "stuck" with english on the mailing list generated verbiage.

As far as a form. Here's one I have in my knowledge base for my customers and I've used on a Windows server:

The following is a two part script that will allow you to do it on a windows server.

The following would be the contents of a form in an html page. Adjust to your site:

<form method=POST action="subscribe.asp" target="_top">
<INPUT TYPE="HIDDEN" NAME="mail_to" VALUE="listname-subscribe@yourdomain.com">
<INPUT TYPE="HIDDEN" NAME="mail_subject" VALUE="Subscribe">
<INPUT TYPE="HIDDEN" NAME="mail_redirect" VALUE="http://www.yourdomain.com/thanksforsubscribing.htm">
<INPUT TYPE="HIDDEN" NAME="mail_send" VALUE="y">



<TABLE BORDER=0 cellpadding=2 cellspacing=0 width="350">




<INPUT TYPE="TEXT" NAME="mail_from" SIZE="30" CLASS="shadeform"> <B>E-Mail</B><BR>

<br>
<br>

<input type="submit" value="Submit Query" onmouseover="this.className='submitbuttonon'" onmouseout="this.className='submitbutton'" class="submitbutton"><br>

</FORM>

++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++
Take the following code and paste it into a new page called subscribe.asp Adjust for your domain.

<%

'The hidden variable called "mail_send" must be set to "y" for the mail to send
IF Request.Form("mail_send") = "y" THEN


IF form_from = "" THEN form_from = "abuse@yourdomain.com"
IF form_to = "" THEN form_to = "listname-subscribe@yourdomain.com"
IF form_subject = "" THEN form_subject = "Subscribe"
IF form_redirect = "" THEN form_redirect = "http://www.yourdomain.com/thanksforsubscribing.htm"



'************************************************* ******
'Get all form elements and structure the e-mail
'************************************************* ******

FOR x = 1 TO Request.Form.Count
IF Request.Form.Key(x) = "mail_from" OR Request.Form.Key(x) = "mail_to" OR Request.Form.Key(x) = "mail_cc" OR Request.Form.Key(x) = "mail_bcc" OR Request.Form.Key(x) = "mail_subject" OR Request.Form.Key(x) = "mail_importance" OR Request.Form.Key(x) = "mail_redirect" OR Request.Form.Key(x) = "mail_send" OR Request.Form.Key(x) = "Submit" THEN
form_variables = form_variables
ELSE
form_variables = form_variables & Request.Form.Key(x) & ": " & vbcrlf & Request.Form.Item(x) & vbcrlf & vbcrlf
END IF
NEXT

DIM body_text
body_text = body_text & form_variables
body_text = body_text & "Sent from: " & vbcrlf & Request.ServerVariables("HTTP_REFERER") & vbcrlf & vbcrlf




'************************************************* ******
'Get values from hidden fields for sending the mail
'************************************************* ******
SET objMail = Server.CreateObject("CDONTS.NewMail")
objMail.BodyFormat = 1
objMail.MailFormat = 1
objMail.From = form_from
objMail.To = form_to
objMail.CC = form_cc
objMail.BCC = form_bcc
objMail.Subject = form_subject
objMail.Importance = form_importance
objMail.Body = body_text
objMail.Send 'This line actually sends the e-mail
SET objMail = NOTHING



'************************************************* ******
'Redirect to thank you page or write thank you
'************************************************* ******
IF form_redirect = "" THEN
Response.Write("Thank You. Mail Sent.")
ELSE
Response.Redirect(form_redirect)
END IF

'************************************************* ******
'If form was submitted then show what is below "END IF"
'************************************************* ******
END IF

'************************************************* ******
'There is a sample Feedback Form below to start you off.
'That's it. Hope you benefit from it. Happy Mailing!
'************************************************* ******

%>
__________________
Chris
Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos
RapidSSL Certificates - $12.00 - $14.95
Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details.
Reply With Quote
  #3  
Old 10-18-2005, 07:26 AM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
well.. this will send an automatic message to users with lots of stuff i dodnt want to send to users (as a reply...) and still in english!

anything else i could do?
Reply With Quote
  #4  
Old 10-18-2005, 09:06 AM
generic's Avatar
generic generic is offline
guess who.. :)
Vortech Inc. Customer
 
Location: chicago
wow, thats complicated, all you need is a simple form sending to the list email. here is a 2 page form using jmail. real real basic.
form-------------------called subscribe.htm
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>subscribe</title> </head> <body> <form name="subscribe" method="post" action="subscribed.asp"> Email Address <input name="email" type="text" size="25" maxlength="50"><br /><br /> <input name="Submit" type="submit" value="Subscribe"> </form> </body> </html>

new page--------------called subscribed.asp
Code:
<% Set JMail = Server.CreateObject("JMail.Message") JMail.ISOEncodeHeaders = False JMail.From = Request.Form("email") JMail.Subject = "subscribe" JMail.AddRecipient "list-subscribe@domain.com" 'JMail.AddRecipientBCC "youremail@yourdomain.com" add your email here i f you want to know about signups JMail.Body = "subscribe" JMail.Priority = 3 JMail.Send(Request.Form("SMTP")) %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>subscribed</title> </head> <body> subscribed, thank you. </body> </html>
you could use almost any form script and send the form to the list signup email address
__________________
goodbye idevaffiliate, you can kiss my @$* with your poor support and broken script, I am now using post affiliate pro 3

Last edited by generic : 10-18-2005 at 09:08 AM.
Reply With Quote
  #5  
Old 10-18-2005, 10:45 AM
Zoren Zoren is online now
Digital Craftsman
Vortech Inc. Customer
 
Thanks for posting those forms. When I started with hsphere I couldn't find a good form and found the program of little use without it.
Reply With Quote
  #6  
Old 10-19-2005, 03:47 AM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
thank yo all..

i still have questions thought..

I have set as moderator an email i use but still notmatter which mail i use and send to newsletter@mydomain.com it will send the mail to the whole list!!!!
How can i stop that???
I dodnt want anyone to able to send anything to my list.

Does anyone know a page that i could find some tutotrials on how to use this mailing list throgh hsphere?

Thank you.
Reply With Quote
  #7  
Old 10-19-2005, 08:32 AM
cleonard's Avatar
cleonard cleonard is offline
BootNumlock Wanna Be
Vortech Inc. Customer
 
Location: Ohio
Send a message via ICQ to cleonard
How can I moderate all posts to a mailing list? Even from members.
--------------------------------------------------------------------------------
The setting are not real clear but make sure the following three options are selected:

Message Moderation

AND

Others not rejected. For moderated lists, all posts are forwarded to moderators. The switch affects only moderated lists.

AND

Do not restrict posts based on SENDER address
__________________
Chris
Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos
RapidSSL Certificates - $12.00 - $14.95
Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details.
Reply With Quote
  #8  
Old 10-19-2005, 12:18 PM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
I have this customer who wants to use the mailing list of hsphere panel as an everyday newsletter tool.
He has over 1500 cliients and wants to be sending mail to them everyday. (text plain)

How much do you think the bandwith will grow every month with such trafic?

Thank you.
Reply With Quote
  #9  
Old 10-19-2005, 03:57 PM
generic's Avatar
generic generic is offline
guess who.. :)
Vortech Inc. Customer
 
Location: chicago
Quote:
Originally Posted by zak
I have this customer who wants to use the mailing list of hsphere panel as an everyday newsletter tool.
He has over 1500 cliients and wants to be sending mail to them everyday. (text plain)

How much do you think the bandwith will grow every month with such trafic?

Thank you.
your looking to get yourself blacklisted with that account.
1500 plain text messages should be nothing. about 5KB for a simple plain text message 5x1500 = 7500KB = 7MB
__________________
goodbye idevaffiliate, you can kiss my @$* with your poor support and broken script, I am now using post affiliate pro 3

Last edited by generic : 10-19-2005 at 03:59 PM.
Reply With Quote
  #10  
Old 10-19-2005, 05:44 PM
mresell's Avatar
mresell mresell is offline
ePerson
Vortech Inc. Customer
 
Location: Around the \bin
Why would someone want to send a newsletter everyday. Seems like once a week would be enough. Alerts are one thing.
Reply With Quote
  #11  
Old 10-19-2005, 06:33 PM
TonyK TonyK is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Did you try Psoft http://www.psoft.net/HSdocumentation...ing_lists.html and here
http://www.ezmlm.org/faq/index.html

Καλή τύχη

Αντώνης
__________________
Tony

http://www.florini.net
Reply With Quote
  #12  
Old 10-27-2005, 08:36 AM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
Quote:
Originally Posted by cleonard
How can I moderate all posts to a mailing list? Even from members.
--------------------------------------------------------------------------------
The setting are not real clear but make sure the following three options are selected:

Message Moderation

AND

Others not rejected. For moderated lists, all posts are forwarded to moderators. The switch affects only moderated lists.

AND

Do not restrict posts based on SENDER address

I have done all that and even i get rejected from sending mails to the list!!
why so?
what do i have to set?

thank you
Reply With Quote
  #13  
Old 10-27-2005, 08:43 AM
cleonard's Avatar
cleonard cleonard is offline
BootNumlock Wanna Be
Vortech Inc. Customer
 
Location: Ohio
Send a message via ICQ to cleonard
Do you have the email address you're using to send messages setup as a moderator and list owner? You should get a message to moderate your own post at that point. Approve the post by replying to the email sent by the system and the message will go to the list.

Works for me and all my customers . . .
__________________
Chris
Get over 45 H-Sphere Flash Tutorials customized with your hosting company logo for just $75.00. H-Sphere Demos
RapidSSL Certificates - $12.00 - $14.95
Not enough time? Other interests? I'll buy your hosting business or clients. Contact me with details.
Reply With Quote
  #14  
Old 10-27-2005, 08:58 AM
zak's Avatar
zak zak is offline
Registered User
Junior Member
 
Location: Greece
Send a message via ICQ to zak Send a message via MSN to zak
i did.. and did work..
it seems likes sometimes we should ready the whole mail

i thank you..
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Configuring EZMLM mailing lists sobocinski Chit Chat Public 0 10-28-2004 12:31 AM
ezmlm subscription: http://www.zpfe.com/qmail/ml-sub/README govereeter Chit Chat Public 0 11-19-2003 09:58 AM
ezmlm warning cjmelhorn Chit Chat Public 3 11-06-2003 12:32 AM


All times are GMT -5. The time now is 11:28 PM.


Powered by vBulletin Version 3.5.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Vortech Inc. ©2005
Page generated in 0.74112 seconds with 21 queries
[Output: 116.78 Kb. compressed to 108.24 Kb. by saving 8.54 Kb. (7.31%)]