try the following:
$logfile = "c:\temp\output.log"
Import-CSV "YourFile.csv" | ForEach-Object {
write-output $_.Email | out-file $logfile
write-output $_.ForwardingAddress | out-file $logfile -append
# $_ represents the current line in the CSV. Elements are accessed by column name.
write-output "Add-MailboxPermission:" | out-file $logfile -append
Add-MailboxPermission $_.Email -User Admin -AccessRights FullAccess | Out-File $logfile -append
write-output "New-InboxRule:" | out-file $logfile -append
New-InboxRule -Name $_.ForwardingAddress -Mailbox $_.Email -RedirectTo $_.ForwardingAddress -DeleteMessage $True | Out-File $logfile -append
write-output "Remove-MailboxPermission:" | out-file $logfile -append
Remove-MailboxPermission identity $_.Email -User Admin -AccessRights FullAccess -Confirm:$False | Out-File $logfile -append
}