Click to See Complete Forum and Search --> : Help again please
PeggyPeggy
03-03-2008, 07:15 PM
Okay... so i have this website that allows you to view a newsletter. I need to change the newsletter but when i look in the word press are under the 'newsletter' then 'edit' it says testing only. So I am assuming i need to look in an entirely different area, but i can't be sure where. The new newsletter comes out soon and I am desperate. Also.. not sure if this makes any sense at all... but people go online to register for the newsletter and they are signing up but we do not recieve the emails... and i'm not afraid to say i have no idea where they are going. The website is thewinewarehouse.ca if you are confused at what i'm talking about. Thank you so much for any help you can give.
Your newsletter is here: http://thewinewarehouse.ca/current_newsletter/Newsletter_Feb_2008.pdf
It is in PDF format; you aren't able to edit it. You need to create a new newsletter, and then upload it to the website.
As to the email form, I can't tell where it's set to go. The server-side coding does not appear on this end. According to the HTML, the code processing the form is in the newsletter page. You should be able to find an email address in that snippet of code.
<form action="http://thewinewarehouse.ca/newsletter" method="post">
<input name="postHad" type="hidden" value="true" />
<span class="newsletterFormText">First Name :</span><br>
<input class="contactForm" type="text" name="first" size="20" /><br><br>
<span class="newsletterFormText">Last Name :</span><br>
<input class="contactForm" type="text" name="last" size="20" /><br><br>
<span class="newsletterFormText">Email Address :</span><br>
<input class="contactForm" type="text" name="email" size="20" /><br><br>
<input class="contactButton" type="submit" value="Subscribe" />
</form>