Posts by user67645 • 3 points
2 posts
-
-1
votes1
answer131
viewsQ: error sending email in php using phpmailer
Follow my php and html code <?php require("PHPMailer/PHPMailerAutoload.php"); if (isset($_POST['submit'])){ $enviaFormularioParaNome = 'Lucas'; $enviaFormularioParaEmail = '[email protected]';…
-
0
votes1
answer728
viewsQ: Code first Migrations does not work
I did it in a separate layer called Data public class Context : DbContext { public Context() : base("EscolaContext") { } public DbSet<Escola> Escolas { get; set; } public DbSet<Turma>…